cancelTransaction method
bool
cancelTransaction(
- Transaction transaction,
- DBSQLiteConnectionWrapper? connection,
- Object? error,
- StackTrace? stackTrace,
override
Implementation
@override
bool cancelTransaction(
Transaction transaction,
DBSQLiteConnectionWrapper? connection,
Object? error,
StackTrace? stackTrace,
) {
// The `ROLLBACK` is issued by `_DBSQLiteConnectionWrapped.openTransaction`
// when the transaction block throws.
return true;
}