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