Package-level declarations
Types
Link copied to clipboard
open class BatchInsertSuspendExecutable<S : BaseBatchInsertStatement>(val statement: S) : InsertSuspendExecutable<List<ResultRow>, S>
Link copied to clipboard
open class BatchUpdateSuspendExecutable(val statement: BatchUpdateStatement) : UpdateSuspendExecutable
Link copied to clipboard
open class BatchUpsertSuspendExecutable(val statement: BatchUpsertStatement) : BatchInsertSuspendExecutable<BatchUpsertStatement>
Link copied to clipboard
open class DeleteSuspendExecutable(val statement: DeleteStatement) : SuspendExecutable<Int, DeleteStatement>
Link copied to clipboard
open class InsertSelectSuspendExecutable(val statement: InsertSelectStatement) : SuspendExecutable<Int, InsertSelectStatement>
Link copied to clipboard
open class InsertSuspendExecutable<Key : Any, S : InsertStatement<Key>>(val statement: S) : SuspendExecutable<Int, S>
Link copied to clipboard
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
open class ReturningSuspendExecutable(val statement: ReturningStatement) : SuspendExecutable<ResultApi, ReturningStatement> , Flow<ResultRow>
Link copied to clipboard
open class SQLServerBatchInsertSuspendExecutable( val statement: SQLServerBatchInsertStatement) : BatchInsertSuspendExecutable<SQLServerBatchInsertStatement>
Link copied to clipboard
Executable provides a customizable execution mechanism for SQL statements within a transaction.
Link copied to clipboard
open class UpdateSuspendExecutable(val statement: UpdateStatement) : SuspendExecutable<Int, UpdateStatement>
Link copied to clipboard
open class UpsertSuspendExecutable<Key : Any>(val statement: UpsertStatement<Key>) : InsertSuspendExecutable<Key, UpsertStatement<Key>>