Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Commit/rollback a knex transaction using async/await

I'm test driving the ES7 async/await proposal using this module to emulate it. I'm trying to make knex.js transactions play well with them, as a starting point.

Example code:

async function transaction() {
  return new Promise(function(resolve, reject){
    knex.transaction(function(err, result){
      if (err) {
        reject(err);
      } else {
        resolve(result);
      }
    });
  });
}

// Start transaction from this call

insert: async (function(db, data) {
 const trx = await(transaction());
 const idUser = await(user.insertData(trx, data));

 return {
    idCidUserstomer: idUser
  }
})

How can I commit() or rollback() if a transaction succeeds or fails?

like image 638
nicholaswmin Avatar asked Nov 14 '16 02:11

nicholaswmin


3 Answers

You might be able to achieve this with something similar to this

function createTransaction() {
  return new Promise((resolve) => {
    return knex.transaction(resolve);
  });
}

async function() {
  const trx = await createTransaction();
  ...
  trx.commit();
}
like image 121
Alex Beauchemin Avatar answered Nov 17 '22 10:11

Alex Beauchemin


Building off of this Knex Transaction with Promises, it looks like it should be along these lines:

// assume `db` is a knex instance

insert: async (function(db, data) {
  const trx = db.transaction();
  try {
    const idUser = await(user.insertData(trx, data));
    trx.commit();
  } catch (error) {
    trx.rollback();
    throw error;
  }

  return {
    idUser: idUser
  }
})
like image 33
Lance Avatar answered Nov 17 '22 10:11

Lance


You can try this:

async function() {
  await knex.transaction( async (trx) => {
     ...
     trx.commit();
  }
}
like image 1
Christian Avatar answered Nov 17 '22 12:11

Christian