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

Instruction INSERT facultative dans la chaîne de transaction à l'aide de NodeJS et Postgres

La gestion manuelle des transactions est un chemin dangereux, essayez de vous en éloigner !;)

Voici comment le faire correctement, avec l'aide de pg-promise :

function(req, res) {
    db.tx(t => { // automatic BEGIN
            return t.one('INSERT_1 VALUES(...) RETURNING id', paramValues)
                .then(data => {
                    var q = t.none('INSERT_2 VALUES(...)', data.id);
                    if (req.body.value != null) {
                        return q.then(()=> t.none('INSERT_3 VALUES(...)', data.id));
                    }
                    return q;
                });
        })
        .then(data => {
            res.send("Everything's fine!"); // automatic COMMIT was executed
        })
        .catch(error => {
            res.send("Something is wrong!"); // automatic ROLLBACK was executed
        });
}

Ou, si vous préférez la syntaxe ES7 :

function (req, res) {
    db.tx(async t => { // automatic BEGIN
            let data = await t.one('INSERT_1 VALUES(...) RETURNING id', paramValues);
            let q = await t.none('INSERT_2 VALUES(...)', data.id);
            if (req.body.value != null) {
                return await t.none('INSERT_3 VALUES(...)', data.id);
            }
            return q;
        })
        .then(data => {
            res.send("Everything's fine!"); // automatic COMMIT was executed
        })
        .catch(error => {
            res.send("Something is wrong!"); // automatic ROLLBACK was executed
        });
}

MISE À JOUR

Remplacement des générateurs ES6 par ES7 async /await dans l'exemple, car pg-promise a cessé de prendre en charge les générateurs ES6 à partir de la version 9.0.0