Packages

t

slick.memory

MemoryQueryingProfile

trait MemoryQueryingProfile extends BasicProfile

The querying (read-only) part that can be shared between MemoryProfile and DistributedProfile.

Self Type
MemoryQueryingProfile
Source
MemoryQueryingProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MemoryQueryingProfile
  2. BasicProfile
  3. BasicActionComponent
  4. AnyRef
  5. 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 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.

    Definition Classes
    BasicProfile
  4. trait API extends MemoryQueryingProfile.API with ImplicitColumnTypes
  5. abstract type Backend <: BasicBackend

    The back-end type required by this profile

    The back-end type required by this profile

    Definition Classes
    BasicProfile
  6. type BaseColumnType[T] = ScalaType[T] with BaseTypedType[T]
  7. type ColumnType[T] = ScalaType[T]
  8. type CompiledInsert = Node

    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.

    Definition Classes
    MemoryQueryingProfileBasicProfile
  9. trait ImplicitColumnTypes extends AnyRef
  10. class MemoryCodeGen extends CodeGen with ResultConverterCompiler[MemoryResultConverterDomain]
  11. abstract type ProfileAction[+R, +S <: NoStream, -E <: Effect] <: BasicAction[R, S, E]
    Definition Classes
    BasicActionComponent
  12. abstract type QueryActionExtensionMethods[R, S <: NoStream] <: QueryActionExtensionMethodsImpl[R, S]
    Definition Classes
    BasicActionComponent
  13. abstract type SchemaDescription <: SchemaDescriptionDef

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    BasicProfile
  14. abstract type StreamingProfileAction[+R, +T, -E <: Effect] <: BasicStreamingAction[R, T, E] with ProfileAction[R, Streaming[T], E]
    Definition Classes
    BasicActionComponent
  15. 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.

    Definition Classes
    MemoryQueryingProfileBasicProfile
  2. abstract val backend: Backend

    The back-end implementation for this profile

    The back-end implementation for this profile

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

    The compiler used for deleting data

    The compiler used for deleting data

    Definition Classes
    BasicProfile
  6. abstract def insertCompiler: QueryCompiler

    The compiler used for inserting data

    The compiler used for inserting data

    Definition Classes
    BasicProfile
  7. abstract def queryCompiler: QueryCompiler

    The compiler used for queries

    The compiler used for queries

    Definition Classes
    BasicProfile
  8. abstract def updateCompiler: QueryCompiler

    The compiler used for updates

    The compiler used for updates

    Definition Classes
    BasicProfile

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.

    Definition Classes
    BasicProfile
  2. def compileInsert(tree: Node): Node

    (Partially) compile an AST for insert operations

    (Partially) compile an AST for insert operations

    Definition Classes
    MemoryQueryingProfileBasicProfile
  3. def toString(): String
    Definition Classes
    BasicProfile → AnyRef → Any
  4. def typeInfoFor(t: Type): ScalaType[Any]

    The profile-specific representation of types

  5. object ProductOfCommonPaths

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.

    Definition Classes
    BasicProfile
    Annotations
    @deprecated
    Deprecated

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