JdbcPreparedStatementImpl

class JdbcPreparedStatementImpl(val statement: PreparedStatement, val wasGeneratedKeysRequested: Boolean) : JdbcPreparedStatementApi

Class representing a precompiled SQL statement.

The result set generated by executing this statement contains auto-generated keys based on the value of wasGeneratedKeysRequested.

Constructors

Link copied to clipboard
constructor(statement: PreparedStatement, wasGeneratedKeysRequested: Boolean)

Properties

Link copied to clipboard
open override var fetchSize: Int?

The number of result set rows that should be fetched when generated by an executed statement.

Link copied to clipboard
open override val resultSet: JdbcResult?

The ResultSet object generated by the executed statement, or null if none was retrieved.

Link copied to clipboard
Link copied to clipboard
open override var timeout: Int?

The number of seconds the JDBC driver will wait for a statement to execute.

Functions

Link copied to clipboard
open override fun addBatch()

Adds parameters to the statement's batch of SQL commands.

Link copied to clipboard
open override fun cancel()

Cancels the statement, if supported by the database.

Link copied to clipboard
open override fun closeIfPossible()

Closes the statement, if still open, and releases any of its database and/or driver resources.

Link copied to clipboard
open override fun executeBatch(): List<Int>

Executes batched SQL statements stored as a PreparedStatement.

Link copied to clipboard
open override fun executeMultiple(): List<StatementResult>

Executes multiple SQL statements stored in a single PreparedStatement.

Link copied to clipboard
open override fun executeQuery(): JdbcResult

Executes an SQL query stored in a PreparedStatement.

Link copied to clipboard
open override fun executeUpdate(): Int

Executes an SQL statement stored in a PreparedStatement.

Link copied to clipboard
open fun fillParameters(args: Iterable<Pair<IColumnType<*>, Any?>>): Int
Link copied to clipboard
open operator override fun set(index: Int, value: Any)
Link copied to clipboard
open override fun setArray(index: Int, type: ArrayColumnType<*, *>, array: Array<*>)
Link copied to clipboard
open override fun setInputStream(index: Int, inputStream: InputStream, setAsBlobObject: Boolean)
Link copied to clipboard
open override fun setNull(index: Int, columnType: IColumnType<*>)