PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Istruzione INSERT opzionale nella catena di transazioni utilizzando NodeJS e Postgres

La gestione manuale delle transazioni è un percorso insidioso, cerca di evitarlo!;)

Ecco come farlo correttamente, con l'aiuto di 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
        });
}

Oppure, se preferisci la sintassi 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
        });
}

AGGIORNAMENTO

Sostituiti i generatori ES6 con ES7 async /await nell'esempio, perché pg-promise ha smesso di supportare i generatori ES6 dalla versione 9.0.0