BatchReplaceStatement
Represents the SQL statement that either batch inserts new rows into a table, or, if insertions violate unique constraints, first deletes the existing rows before inserting new rows.
Parameters
Table to either insert values into or delete values from then insert into.
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned. See Batch Insert for more details.
Properties
The number of rows affected by the insert operation.
Whether the SQL statement is meant to be performed as part of a batch execution.
The ResultRows generated by processing the database result set retrieved after executing the statement.
Functions
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.
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.
Uses a transaction connection and an sql string representation to return a precompiled SQL statement, stored as an implementation of PreparedStatementApi.
Returns the string representation of an SQL statement.
Updates the mapping of the specified column with the value of the provided expression.