batchInsert
Represents the SQL statement that batch inserts new rows into a table, relying entirely on the underlying driver mechanisms to perform the batching operation.
Return
A BatchInsertStatement that can be executed.
Parameters
Whether to ignore errors or not. Note ignoreErrors is not supported by all vendors. Please check the documentation.
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned.
Represents the SQL statement that batch inserts new rows into a table.
Return
A BatchInsertStatement that can be executed.
Parameters
Whether to return a single INSERT statement that uses multi-row values constructor, like INSERT ... VALUES (...), (...), ...; if false, a regular statement will be prepared for driver batching.
Whether to ignore errors or not. Note ignoreErrors is not supported by all vendors. Please check the documentation.
Specifies whether newly generated values (for example, auto-incremented IDs) should be returned.