Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use promise to process MySQL return value in node.js

I have a python background and is currently migrating to node.js. I have problem adjusting to node.js due to its asynchronous nature.

For example, I am trying to return a value from a MySQL function.

function getLastRecord(name) {     var connection = getMySQL_connection();      var query_str =     "SELECT name, " +     "FROM records " +        "WHERE (name = ?) " +     "LIMIT 1 ";      var query_var = [name];      var query = connection.query(query_str, query_var, function (err, rows, fields) {         //if (err) throw err;         if (err) {             //throw err;             console.log(err);             logger.info(err);         }         else {             //console.log(rows);             return rows;         }     }); //var query = connection.query(query_str, function (err, rows, fields) { }  var rows = getLastRecord('name_record');  console.log(rows); 

After some reading up, I realize the above code cannot work and I need to return a promise due to node.js's asynchronous nature. I cannot write node.js code like python. How do I convert getLastRecord() to return a promise and how do I handle the returned value?

In fact, what I want to do is something like this;

if (getLastRecord() > 20) {     console.log("action"); } 

How can this be done in node.js in a readable way?

I would like to see how promises can be implemented in this case using bluebird.

like image 851
guagay_wk Avatar asked Apr 11 '16 11:04

guagay_wk


People also ask

Can I use Promise in node JS?

Promises can be used to execute a series of asynchronous tasks in sequential order. Chaining multiple then() methods to a single Promise outcome helps avoid the need to code complicated nested functions (which can result in callback hell).

What does Promise do in node JS?

A Promise in Node means an action which will either be completed or rejected. In case of completion, the promise is kept and otherwise, the promise is broken. So as the word suggests either the promise is kept or it is broken. And unlike callbacks, promises can be chained.

What is mysql2 Promise?

Promise-mysql2 is a wrapper for mysqljs/mysql that wraps function calls with promises. node >= 8.0. To install promise-mysql, use npm: $ npm install promise-mysql2. Please refer to mysqljs/mysql for documentation on how to use the mysql functions.


1 Answers

This is gonna be a little scattered, forgive me.

First, assuming this code uses the mysql driver API correctly, here's one way you could wrap it to work with a native promise:

function getLastRecord(name) {     return new Promise(function(resolve, reject) {         // The Promise constructor should catch any errors thrown on         // this tick. Alternately, try/catch and reject(err) on catch.         var connection = getMySQL_connection();          var query_str =         "SELECT name, " +         "FROM records " +            "WHERE (name = ?) " +         "LIMIT 1 ";          var query_var = [name];          connection.query(query_str, query_var, function (err, rows, fields) {             // Call reject on error states,             // call resolve with results             if (err) {                 return reject(err);             }             resolve(rows);         });     }); }  getLastRecord('name_record').then(function(rows) {     // now you have your rows, you can see if there are <20 of them }).catch((err) => setImmediate(() => { throw err; })); // Throw async to escape the promise chain 

So one thing: You still have callbacks. Callbacks are just functions that you hand to something to call at some point in the future with arguments of its choosing. So the function arguments in xs.map(fn), the (err, result) functions seen in node and the promise result and error handlers are all callbacks. This is somewhat confused by people referring to a specific kind of callback as "callbacks," the ones of (err, result) used in node core in what's called "continuation-passing style", sometimes called "nodebacks" by people that don't really like them.

For now, at least (async/await is coming eventually), you're pretty much stuck with callbacks, regardless of whether you adopt promises or not.

Also, I'll note that promises aren't immediately, obviously helpful here, as you still have a callback. Promises only really shine when you combine them with Promise.all and promise accumulators a la Array.prototype.reduce. But they do shine sometimes, and they are worth learning.

like image 160
Josh Holbrook Avatar answered Sep 28 '22 09:09

Josh Holbrook