Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment un module mysql promis fonctionnera-t-il avec NodeJS ?

Si une méthode est un nœud "errback" avec un seul argument - elle sera résolue sans paramètre dans le then ou bien être rejeté avec le err y est passé. En cas de promisification, vous pouvez l'attraper avec .error ou utilisez un catch avec Promise.OperationalError .

Voici une approche simple :

function getConnection(){
    var connection = mysql.createConnection({
      host     : 'localhost',
      user     : 'me',
      password : 'secret'
    });
    return connection.connectAsync().return(connection); // <- note the second return
}

getConnection().then(function(db){
    return db.queryAsync(....);
}).error(function(){
   // could not connect, or query error
});

Si c'est pour gérer les connexions - j'utiliserais Promise.using - voici un exemple de l'API :

var mysql = require("mysql");
// uncomment if necessary
// var Promise = require("bluebird");
// Promise.promisifyAll(mysql);
// Promise.promisifyAll(require("mysql/lib/Connection").prototype);
// Promise.promisifyAll(require("mysql/lib/Pool").prototype);
var pool  = mysql.createPool({
    connectionLimit: 10,
    host: 'example.org',
    user: 'bob',
    password: 'secret'
});

function getSqlConnection() {
    return pool.getConnectionAsync().disposer(function(connection) {
        try {
            connection.release();
        } catch(e) {};
    });
}

module.exports = getSqlConnection;

Ce qui vous permettrait de faire :

Promise.using(getSqlConnection(), function(conn){
    // handle connection here, return a promise here, when that promise resolves
    // the connection will be automatically returned to the pool.
});