Package-level declarations

Types

Link copied to clipboard
open class InsertSuspendExecutable<Key : Any, S : InsertStatement<Key>>(val statement: S) : SuspendExecutable<Int, S>
Link copied to clipboard
open class MergeSuspendExecutable<S : MergeStatement>(val statement: S) : SuspendExecutable<Int, S>
Link copied to clipboard
class R2dbcConnectionImpl(    val connection: Publisher<out Connection>,     vendorDialect: String,     scope: R2dbcScope,     typeMapperRegistry: TypeMapperRegistry) : R2dbcExposedConnection<Publisher<out Connection>>

Class representing a wrapped R2DBC database Connection.

Link copied to clipboard
class R2dbcPreparedStatementImpl(    statement: Statement,     val connection: Connection,     val wasGeneratedKeysRequested: Boolean,     currentDialect: DatabaseDialect,     typeMapperRegistry: TypeMapperRegistry) : R2dbcPreparedStatementApi

Class representing a precompiled SQL Statement from the R2DBC SPI.

Link copied to clipboard
interface SuspendExecutable<out T, S : Statement<T>>

Executable provides a customizable execution mechanism for SQL statements within a transaction.