scala.slick.profile

BasicProfile

trait BasicProfile extends BasicInvokerComponent with BasicExecutorComponent

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

Self Type
BasicDriver
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicProfile
  2. BasicExecutorComponent
  3. BasicInvokerComponent
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Backend <: DatabaseComponent

    The back-end type required by this profile

  2. trait DDLInvoker extends AnyRef

    Pseudo-invoker for running DDL statements.

  3. trait Implicits extends ExtensionMethodConversions

  4. abstract type InsertInvoker[T] <: BasicDriver.InsertInvokerDef[T]

    The type of insert invokers returned by the driver

    The type of insert invokers returned by the driver

    Definition Classes
    BasicInvokerComponent
  5. trait InsertInvokerDef[T] extends AnyRef

    Definition Classes
    BasicInvokerComponent
  6. abstract type QueryExecutor[T] <: BasicDriver.QueryExecutorDef[T]

    The type of query executors returned by the driver

    The type of query executors returned by the driver

    Definition Classes
    BasicExecutorComponent
  7. trait QueryExecutorDef[R] extends AnyRef

    Definition Classes
    BasicExecutorComponent
  8. abstract type SchemaDescription <: BasicDriver.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.

  10. trait SimpleQL extends BasicDriver.Implicits with Aliases

  11. final class UnshapedQueryExecutor[M] extends AnyRef

    Definition Classes
    BasicExecutorComponent

Abstract Value Members

  1. abstract val Implicit: BasicDriver.Implicits

  2. abstract val backend: BasicDriver.Backend

  3. abstract def createDDLInvoker(ddl: BasicDriver.SchemaDescription): BasicDriver.DDLInvoker

    Create a DDLInvoker -- this method should be implemented by drivers as needed

    Create a DDLInvoker -- this method should be implemented by drivers as needed

    Definition Classes
    BasicInvokerComponent
  4. abstract def createInsertInvoker[T](tree: Node): BasicDriver.InsertInvoker[T]

    Create an InsertInvoker -- this method should be implemented by drivers as needed

    Create an InsertInvoker -- this method should be implemented by drivers as needed

    Definition Classes
    BasicInvokerComponent
  5. abstract def createQueryExecutor[R](tree: Node, param: Any): BasicDriver.QueryExecutor[R]

    Create an executor -- this method should be implemented by drivers as needed

    Create an executor -- this method should be implemented by drivers as needed

    Definition Classes
    BasicExecutorComponent
  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 val simple: BasicDriver.SimpleQL

    A collection of values for using the query language with a single import statement.

    A collection of values for using the query language with a single import statement. This provides the driver's implicits, the Database and Session objects for DB connections, and commonly used query language types and objects.

  10. abstract def updateCompiler: QueryCompiler

    The compiler used for updates

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. final val capabilities: Set[Capability]

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def computeCapabilities: Set[Capability]

    Attributes
    protected
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  20. def toString(): String

    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BasicExecutorComponent

Inherited from BasicInvokerComponent

Inherited from AnyRef

Inherited from Any

Ungrouped