batchInsert
Represents the SQL statement that batch inserts new rows into a table.
Return
A list of ResultRow representing data from each newly inserted row.
Parameters
Collection of values to use in the batch insert.
Whether to ignore errors or not. Note ignore is not supported by all vendors. Please check the documentation.
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned. See Batch Insert for more details.
Samples
org.jetbrains.exposed.sql.tests.shared.dml.InsertTests.testBatchInsert01Represents the SQL statement that batch inserts new rows into a table.
Return
A list of ResultRow representing data from each newly inserted row.
Parameters
Sequence of values to use in the batch insert.
Whether to ignore errors or not. Note ignore is not supported by all vendors. Please check the documentation.
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned. See Batch Insert for more details.