NoTransactionDelegate constructor

const NoTransactionDelegate({
  1. String start = 'BEGIN TRANSACTION',
  2. String commit = 'COMMIT TRANSACTION',
  3. String rollback = 'ROLLBACK TRANSACTION',
})

Construct a transaction delegate indicating that native transactions aren't supported and need to be emulated by issuing statements and locking the database.

Implementation

const NoTransactionDelegate({
  this.start = 'BEGIN TRANSACTION',
  this.commit = 'COMMIT TRANSACTION',
  this.rollback = 'ROLLBACK TRANSACTION',
});