PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Fechando a conexão do cliente postgres (pg) no node.js


Uma interface baseada em promessas como pg-promise é o caminho a seguir:
var bluebird = require('bluebird');
var pgp = require('pg-promise')({
    promiseLib: bluebird
});
var db = pgp(/*connection details*/);

db.tx(t => {
    // BEGIN executed
    return t.map('SELECT id, chain FROM mytable where state_ready = $1 and transaction_id = $2', [true, 123], a => {
        var chain = data.chain;
        var pg_record = data.id;
        return t.none('UPDATE mytable SET transaction_id = $1::text where id=$2::int', [transactionHash, pg_record]);
    }).then(t.batch); // settling all internal queries
})
    .then(data => {
        // success, COMMIT executed
    })
    .catch(error => {
        // error, ROLLBACK executed
    })
    .finally(pgp.end); // shuts down the connection pool

O exemplo acima faz exatamente o que você pediu, além de usar uma transação. Mas, na realidade, você vai querer fazer tudo em uma consulta, por motivos de desempenho;)

Veja mais exemplos .