Back to Exposed

InsertBlockingExecutable

docs/api/exposed-jdbc/org.jetbrains.exposed.v1.jdbc.statements/-insert-blocking-executable/index.html

1.2.03.5 KB
Original Source

InsertBlockingExecutable

open class InsertBlockingExecutable<Key : Any, S : InsertStatement<Key>>(val statement: S) : BlockingExecutable<Int, S>

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

Inheritors

BatchInsertBlockingExecutable

UpsertBlockingExecutable

Members

Constructors

InsertBlockingExecutable

Link copied to clipboard

constructor(statement: S)

Properties

isAlwaysBatch

Link copied to clipboard

open val isAlwaysBatch: Boolean

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 fun execute(transaction: JdbcTransaction): 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 override fun JdbcPreparedStatementApi.executeInternal(transaction: JdbcTransaction): 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 override fun prepared(transaction: JdbcTransaction, sql: String): JdbcPreparedStatementApi

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

Generated by Dokka © 2026 Copyright