object RelationalCapabilities
Capabilities for slick.profile.RelationalProfile.
- Alphabetic
- By Inheritance
- RelationalCapabilities
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- val all: Set[Capability]
All relational capabilities
- val columnDefaults: Capability
Supports default values in column definitions
- val foreignKeyActions: Capability
Supports foreignKeyActions
- val functionDatabase: Capability
Supports the database function to get the current database name.
Supports the database function to get the current database name. A profile without this capability will return an empty string.
- val functionUser: Capability
Supports the user function to get the current database user.
Supports the user function to get the current database user. A profile without this capability will return an empty string.
- val indexOf: Capability
Supports indexOf method on string columns
- val joinFull: Capability
Supports full outer joins
- val joinLeft: Capability
Supports left outer joins
- val joinRight: Capability
Supports right outer joins
- val likeEscape: Capability
Supports escape characters in "like"
- val other: Capability
Supports all RelationalProfile features which do not have separate capability values
- val pagingDrop: Capability
Supports .drop on queries
- val pagingNested: Capability
Supports properly compositional paging in sub-queries
- val pagingPreciseTake: Capability
Returns only the requested number of rows even if some rows are not unique.
Returns only the requested number of rows even if some rows are not unique. Without this capability, non-unique rows may be counted as only one row each.
- val repeat: Capability
Supports repeat method on string columns
- val replace: Capability
Supports replace method on string columns
- val reverse: Capability
Supports reverse method on string columns
- val setByteArrayNull: Capability
Can set an Option[ Array[Byte] ] column to None
- val typeBigDecimal: Capability
Supports the BigDecimal data type
- val typeBlob: Capability
Supports the Blob data type
- val typeLong: Capability
Supports the Long data type
- val zip: Capability
Supports zip, zipWith and zipWithIndex
edit this text on github
Scala Language-Integrated Connection Kit
This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.
Further documentation for Slick can be found on the documentation pages.
To the slick package list...