Trait

slick.basic

BasicBackend

Related Doc: package basic

Permalink

trait BasicBackend extends AnyRef

Backend for the basic database and session handling features. Concrete backends like JdbcBackend extend this type and provide concrete types for Database, DatabaseFactory and Session.

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

Type Members

  1. trait BasicActionContext extends ActionContext

    Permalink

    The context object passed to database actions by the execution engine.

  2. class BasicStreamingActionContext extends BasicActionContext with StreamingActionContext with Subscription

    Permalink

    A special DatabaseActionContext for streaming execution.

    A special DatabaseActionContext for streaming execution.

    Attributes
    protected[this]
  3. abstract type Context >: Null <: BasicActionContext

    Permalink

    The type of the context used for running SynchronousDatabaseActions

  4. abstract type Database <: DatabaseDef

    Permalink

    The type of database objects used by this backend.

  5. trait DatabaseDef extends Closeable

    Permalink

    A database instance to which connections can be created.

  6. abstract type DatabaseFactory

    Permalink

    The type of the database factory used by this backend.

  7. abstract type Session >: Null <: SessionDef

    Permalink

    The type of session objects used by this backend.

  8. trait SessionDef extends Closeable

    Permalink

    A logical session of a Database.

    A logical session of a Database. The underlying database connection is created lazily on demand.

  9. abstract type StreamingContext >: Null <: Context with BasicStreamingActionContext

    Permalink

    The type of the context used for streaming SynchronousDatabaseActions

  10. abstract type This >: BasicBackend.this.type <: BasicBackend

    Permalink

Abstract Value Members

  1. abstract val Database: DatabaseFactory

    Permalink

    The database factory

  2. abstract def createDatabase(config: Config, path: String): Database

    Permalink

    Create a Database instance through Typesafe Config.

    Create a Database instance through Typesafe Config. The supported config keys are backend-specific. This method is used by DatabaseConfig.

    config

    The Config object to read from.

    path

    The path in the configuration file for the database configuration, or an empty string for the top level of the Config object.

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to any2stringadd[BasicBackend] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BasicBackend, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to ArrowAssoc[BasicBackend] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. lazy val actionLogger: SlickLogger

    Permalink
    Attributes
    protected
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def ensuring(cond: (BasicBackend) ⇒ Boolean, msg: ⇒ Any): BasicBackend

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to Ensuring[BasicBackend] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (BasicBackend) ⇒ Boolean): BasicBackend

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to Ensuring[BasicBackend] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): BasicBackend

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to Ensuring[BasicBackend] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): BasicBackend

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to Ensuring[BasicBackend] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to StringFormat[BasicBackend] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. lazy val streamLogger: SlickLogger

    Permalink
    Attributes
    protected
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def [B](y: B): (BasicBackend, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicBackend to ArrowAssoc[BasicBackend] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BasicBackend to any2stringadd[BasicBackend]

Inherited by implicit conversion StringFormat from BasicBackend to StringFormat[BasicBackend]

Inherited by implicit conversion Ensuring from BasicBackend to Ensuring[BasicBackend]

Inherited by implicit conversion ArrowAssoc from BasicBackend to ArrowAssoc[BasicBackend]

Ungrouped