BaseBatchInsertStatement
abstract class BaseBatchInsertStatement( table: Table, ignore: Boolean, val shouldReturnGeneratedValues: Boolean = true) : InsertStatement<List<ResultRow>>
Base class representing the SQL statement that batch inserts new rows into a table.
Parameters
shouldReturnGeneratedValues
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned. See Batch Insert for more details.
Inheritors
Properties
Link copied to clipboard
The number of rows affected by the insert operation.
Link copied to clipboard
The ResultRows generated by processing the database result set retrieved after executing the statement.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The mapping of columns scheduled for change with their new values.
Functions
Link copied to clipboard
Returns the list of columns with default values that can not be taken locally. It is the columns defined with defaultExpression()
, databaseGenerated()
Link copied to clipboard
Returns the string representation of an SQL statement.
Link copied to clipboard
Link copied to clipboard
Updates the mapping of the specified column with the value of the provided expression.
Link copied to clipboard