Packages

t

slick.basic

BasicProfile

trait BasicProfile extends BasicActionComponent

The basic functionality that has to be implemented by all profiles.

Self Type
BasicProfile
Source
BasicProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicProfile
  2. BasicActionComponent
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait QueryActionExtensionMethodsImpl[R, S <: NoStream] extends AnyRef
    Definition Classes
    BasicActionComponent
  2. trait StreamingQueryActionExtensionMethodsImpl[R, T] extends BasicProfile.QueryActionExtensionMethodsImpl[R, Streaming[T]]
    Definition Classes
    BasicActionComponent
  3. trait API extends Aliases with ExtensionMethodConversions
  4. abstract type Backend <: BasicBackend

    The back-end type required by this profile

  5. abstract type CompiledInsert

    The type of a (partially) compiled AST for Insert operations.

    The type of a (partially) compiled AST for Insert operations. Unlike querying or deleting, inserts may require different compilation results which should be computed lazily.

  6. abstract type ProfileAction[+R, +S <: NoStream, -E <: Effect] <: BasicAction[R, S, E]
    Definition Classes
    BasicActionComponent
  7. abstract type QueryActionExtensionMethods[R, S <: NoStream] <: QueryActionExtensionMethodsImpl[R, S]
    Definition Classes
    BasicActionComponent
  8. abstract type SchemaDescription <: SchemaDescriptionDef

    The type of a schema description (DDL)

  9. trait SchemaDescriptionDef extends AnyRef

    A schema description contains the SQL statements for creating and dropping database entities.

    A schema description contains the SQL statements for creating and dropping database entities. Schema descriptions can be combined for creating or dropping multiple entities together, even if they have circular dependencies.

  10. abstract type StreamingProfileAction[+R, +T, -E <: Effect] <: BasicStreamingAction[R, T, E] with ProfileAction[R, Streaming[T], E]
    Definition Classes
    BasicActionComponent
  11. abstract type StreamingQueryActionExtensionMethods[R, T] <: StreamingQueryActionExtensionMethodsImpl[R, T]
    Definition Classes
    BasicActionComponent

Deprecated Type Members

  1. final type DriverAction[+R, +S <: NoStream, -E <: Effect] = ProfileAction[R, S, E]
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use ProfileAction instead of DriverAction

  2. final type StreamingDriverAction[+R, +T, -E <: Effect] = StreamingProfileAction[R, T, E]
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use StreamingProfileAction instead of StreamingDriverAction

Abstract Value Members

  1. abstract val api: API

    The API for using the query language with a single import statement.

    The API for using the query language with a single import statement. This provides the profile's implicits, the Database API and commonly used query language types and objects.

  2. abstract val backend: Backend

    The back-end implementation for this profile

  3. abstract def compileInsert(n: Node): CompiledInsert

    (Partially) compile an AST for insert operations

  4. abstract def createQueryActionExtensionMethods[R, S <: NoStream](tree: Node, param: Any): QueryActionExtensionMethods[R, S]
    Definition Classes
    BasicActionComponent
  5. abstract def createStreamingQueryActionExtensionMethods[R, T](tree: Node, param: Any): StreamingQueryActionExtensionMethods[R, T]
    Definition Classes
    BasicActionComponent
  6. abstract def deleteCompiler: QueryCompiler

    The compiler used for deleting data

  7. abstract def insertCompiler: QueryCompiler

    The compiler used for inserting data

  8. abstract def queryCompiler: QueryCompiler

    The compiler used for queries

  9. abstract def updateCompiler: QueryCompiler

    The compiler used for updates

Concrete Value Members

  1. final val capabilities: Set[Capability]

    The capabilities supported by this profile.

    The capabilities supported by this profile. This can be used to query at runtime whether a specific feature is supported.

  2. def toString(): String
    Definition Classes
    BasicProfile → AnyRef → Any

Deprecated Value Members

  1. val profile: BasicProfile

    The external interface of this profile which defines the API.

    The external interface of this profile which defines the API.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use the Profile object directly instead of calling .profile on it