Packages

o

slick.relational

RelationalCapabilities

object RelationalCapabilities

Source
RelationalCapabilities.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RelationalCapabilities
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val all: Set[Capability]

    All relational capabilities

  2. val columnDefaults: Capability

    Supports default values in column definitions

  3. val foreignKeyActions: Capability

    Supports foreignKeyActions

  4. 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.

  5. 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.

  6. val indexOf: Capability

    Supports indexOf method on string columns

  7. val joinFull: Capability

    Supports full outer joins

  8. val joinLeft: Capability

    Supports left outer joins

  9. val joinRight: Capability

    Supports right outer joins

  10. val likeEscape: Capability

    Supports escape characters in "like"

  11. val other: Capability

    Supports all RelationalProfile features which do not have separate capability values

  12. val pagingDrop: Capability

    Supports .drop on queries

  13. val pagingNested: Capability

    Supports properly compositional paging in sub-queries

  14. 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.

  15. val repeat: Capability

    Supports repeat method on string columns

  16. val replace: Capability

    Supports replace method on string columns

  17. val reverse: Capability

    Supports reverse method on string columns

  18. val setByteArrayNull: Capability

    Can set an Option[ Array[Byte] ] column to None

  19. val typeBigDecimal: Capability

    Supports the BigDecimal data type

  20. val typeBlob: Capability

    Supports the Blob data type

  21. val typeLong: Capability

    Supports the Long data type

  22. val zip: Capability

    Supports zip, zipWith and zipWithIndex