Mysql
 sql >> Database >  >> RDS >> Mysql

Come funzionerà un modulo mysql promesso con NodeJS?

Se un metodo è un nodo "errback" con un singolo argomento, verrà risolto senza parametri in then o in alternativa essere rifiutato con il err passato ad esso. In caso di promessa, puoi prenderla con .error oppure usa un catch con Promise.OperationalError .

Ecco un approccio semplice:

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
});

Se questo è per la gestione delle connessioni, userei Promise.using - ecco un esempio dell'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;

Che ti permetterebbe di fare:

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.
});