scala.slick.driver.JdbcInvokerComponent
Insert a collection of values
Insert a collection of values
Insert a single value
Insert a single value
Insert a single row, including AutoInc columns.
Insert a single row, including AutoInc columns. This is not supported by all database engines (see scala.slick.driver.JdbcProfile.capabilities.forceInsert).
Insert multiple rows, including AutoInc columns.
Insert multiple rows, including AutoInc columns. This is not supported by all database engines (see scala.slick.driver.JdbcProfile.capabilities.forceInsert). Uses JDBC's batch update feature if supported by the JDBC driver. Returns Some(rowsAffected), or None if the database returned no row count for some part of the batch. If any part of the batch fails, an exception is thrown.
Insert a single row, skipping AutoInc columns.
Insert a single row, skipping AutoInc columns.
Insert multiple rows, skipping AutoInc columns.
Insert multiple rows, skipping AutoInc columns. Uses JDBC's batch update feature if supported by the JDBC driver. Returns Some(rowsAffected), or None if the database returned no row count for some part of the batch. If any part of the batch fails, an exception is thrown.
(countingInsertInvoker: StringAdd).self
(countingInsertInvoker: StringFormat).self
(countingInsertInvoker: ArrowAssoc[JdbcDriver.CountingInsertInvoker[U]]).x
(Since version 2.10.0) Use leftOfArrow
instead
(countingInsertInvoker: Ensuring[JdbcDriver.CountingInsertInvoker[U]]).x
(Since version 2.10.0) Use resultOfEnsuring
instead
Pseudo-invoker for running INSERT calls and returning affected row counts.