TransacterImpl
A transaction-aware SqlDriver wrapper which can begin a Transaction on the current connection.
Functions
Link copied to clipboard
open override fun transaction(noEnclosing: Boolean = false, body: TransactionWithoutReturn.() -> Unit)
Starts a Transaction and runs body in that transaction.
Link copied to clipboard
open override fun <R> transactionWithResult(noEnclosing: Boolean = false, bodyWithReturn: TransactionWithReturn<R>.() -> R): R
Starts a Transaction and runs bodyWithReturn in that transaction.