JdbcCapabilities
Capabilities for slick.jdbc.JdbcProfile.
Attributes
- Source:
- JdbcCapabilities.scala
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
- Self type
- JdbcCapabilities.type
Members list
Value members
Concrete fields
All JDBC capabilities
Doesn't map types to Boolean in DatabaseMetaData
Can be used for reverse-engineering the database schema
Returns column default values in meta data
Makes a difference between different integer types
Supports FOR UPDATE row level locking
Can insert into AutoInc columns.
Supports insertAll with rowsPerStatement = RowsPerStatement.One
Supports insertAll with rowsPerStatement = RowsPerStatement.One
Attributes
- Source:
- JdbcCapabilities.scala
Supports a native insertOrUpdate command. Otherwise the functionality is emulated on the client side. The emulation uses transactions for consistency but does not guarantee atomicity, so it may fail if another insert for the same key happens concurrently.
Supports a native insertOrUpdate command. Otherwise the functionality is emulated on the client side. The emulation uses transactions for consistency but does not guarantee atomicity, so it may fail if another insert for the same key happens concurrently.
Attributes
- Source:
- JdbcCapabilities.scala
Supports insertOrUpdate with only primary keys (equivalent to "insert if not exists")
Supports insertOrUpdate with only primary keys (equivalent to "insert if not exists")
Attributes
- Source:
- JdbcCapabilities.scala
Supports mutable result sets
Reports no default and NULL default differently in meta data
Reports no default and NULL default differently in meta data
Attributes
- Source:
- JdbcCapabilities.scala
Supports all JdbcProfile features which do not have separate capability values
Supports all JdbcProfile features which do not have separate capability values
Attributes
- Source:
- JdbcCapabilities.scala
Can return primary key of inserted rows
Can also return non-primary-key columns of inserted rows
Can return multiple primary key of inserted rows in a single statement
Can return multiple primary key of inserted rows in a single statement
Attributes
- Source:
- JdbcCapabilities.scala
Has a datatype directly corresponding to Scala Byte