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.
The ResultRows generated by processing the database result set retrieved after executing the statement.
The mapping of columns scheduled for change with their new values.
Functions
Returns the list of columns with default values that can not be taken locally. It is the columns defined with defaultExpression()
, databaseGenerated()
Returns the string representation of an SQL statement.
Updates the mapping of the specified column with the value of the provided expression.