Back to Exposed

BatchInsertSuspendExecutable

docs/api/exposed-r2dbc/org.jetbrains.exposed.v1.r2dbc.statements/-batch-insert-suspend-executable/index.html

1.2.03.6 KB
Original Source

BatchInsertSuspendExecutable

open class BatchInsertSuspendExecutable<S : BatchInsertStatement>(val statement: S) : InsertSuspendExecutable<List<ResultRow>, S>

Represents the execution logic for an SQL statement that batch inserts new rows into a table.

Inheritors

SQLServerBatchInsertSuspendExecutable

BatchUpsertSuspendExecutable

Members

Constructors

BatchInsertSuspendExecutable

Link copied to clipboard

constructor(statement: S)

Properties

isAlwaysBatch

Link copied to clipboard

open override val isAlwaysBatch: Boolean = true

Whether the SQL statement is meant to be performed as part of a batch execution.

statement

Link copied to clipboard

open override val statement: S

The actual Exposed Statement on which the specific execution logic should be used.

Functions

execute

Link copied to clipboard

open suspend fun execute(transaction: R2dbcTransaction): Int?

Executes the SQL statement directly in the provided transaction and returns the generated result, or null if either no result was retrieved or if the transaction blocked statement execution.

executeInternal

Link copied to clipboard

open suspend override fun R2dbcPreparedStatementApi.executeInternal(transaction: R2dbcTransaction): Int

Determines the exact way that an SQL statement is executed in a transaction and applies any necessary logic before returning the result generated by the executed statement.

prepared

Link copied to clipboard

open suspend override fun prepared(transaction: R2dbcTransaction, sql: String): R2dbcPreparedStatementApi

Uses a transaction connection and an sql string representation to return a precompiled SQL statement, stored as an implementation of R2dbcPreparedStatementApi.

Generated by Dokka © 2026 Copyright