scala.slick.profile

SqlProfile

trait SqlProfile extends RelationalProfile with SqlExecutorComponent with SqlTableComponent

Basic profile for SQL-based drivers.

Self Type
SqlDriver
Source
SqlProfile.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SqlProfile
  2. SqlTableComponent
  3. SqlExecutorComponent
  4. RelationalProfile
  5. RelationalTypesComponent
  6. RelationalSequenceComponent
  7. RelationalTableComponent
  8. BasicProfile
  9. BasicExecutorComponent
  10. BasicInsertInvokerComponent
  11. BasicInvokerComponent
  12. AnyRef
  13. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  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

    The back-end type required by this profile

    Definition Classes
    BasicProfile
  2. abstract type BaseColumnType[T] <: SqlDriver.ColumnType[T] with BaseTypedType[T]

    Definition Classes
    RelationalTypesComponent
  3. trait ColumnOptions extends SqlDriver.ColumnOptions

    Definition Classes
    SqlTableComponent
  4. abstract type ColumnType[T] <: TypedType[T]

    Definition Classes
    RelationalTypesComponent
  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.

    Definition Classes
    BasicInsertInvokerComponent
  6. trait DDL extends SqlDriver.SchemaDescriptionDef

  7. trait DDLInvoker extends AnyRef

    Pseudo-invoker for running DDL statements.

    Pseudo-invoker for running DDL statements.

    Definition Classes
    BasicInvokerComponent
  8. trait ImplicitColumnTypes extends AnyRef

    Definition Classes
    RelationalTypesComponent
  9. trait Implicits extends RelationalDriver.Implicits with RelationalDriver.ImplicitColumnTypes

    Definition Classes
    RelationalProfile
  10. abstract type InsertInvoker[T] <: SqlDriver.InsertInvokerDef[T]

    The type of insert invokers returned by the driver

    The type of insert invokers returned by the driver

    Definition Classes
    BasicInsertInvokerComponent
  11. trait InsertInvokerDef[T] extends AnyRef

    Defines the standard InsertInvoker methods for inserting data, which are available at the level of BasicProfile.

    Defines the standard InsertInvoker methods for inserting data, which are available at the level of BasicProfile.

    Definition Classes
    BasicInsertInvokerComponent
  12. trait MappedColumnTypeFactory extends AnyRef

    Definition Classes
    RelationalTypesComponent
  13. abstract type QueryExecutor[T] <: SqlDriver.QueryExecutorDef[T]

    The type of query executors returned by the driver

    The type of query executors returned by the driver

    Definition Classes
    SqlExecutorComponentBasicExecutorComponent
  14. trait QueryExecutorDef[R] extends SqlDriver.QueryExecutorDef[R]

    Definition Classes
    SqlExecutorComponent
  15. type SchemaDescription = SqlDriver.DDL

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    SqlProfileBasicProfile
  16. 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
  17. class Sequence[T] extends Typed

    Definition Classes
    RelationalSequenceComponent
  18. trait SimpleQL extends RelationalDriver.SimpleQL with RelationalDriver.Implicits

    Definition Classes
    RelationalProfile
  19. abstract class Table[T] extends AbstractTable[T]

    Definition Classes
    RelationalTableComponent
  20. class TableQueryExtensionMethods[T <: RelationalDriver.Table[_], U] extends AnyRef

    Definition Classes
    RelationalProfile
  21. abstract type UnshapedQueryExecutor[T] <: SqlDriver.UnshapedQueryExecutorDef[T]

    The type of query executors returned by the driver

    The type of query executors returned by the driver

    Definition Classes
    BasicExecutorComponent
  22. class UnshapedQueryExecutorDef[M] extends AnyRef

    Definition Classes
    BasicExecutorComponent

Abstract Value Members

  1. abstract val Implicit: SqlDriver.Implicits

    The implicit values and conversions provided by this driver.

    The implicit values and conversions provided by this driver. This is a subset of simple. You usually want to import simple._ instead of using Implicit.

    Definition Classes
    RelationalProfileBasicProfile
  2. abstract val MappedColumnType: SqlDriver.MappedColumnTypeFactory

    Definition Classes
    RelationalTypesComponent
  3. abstract val backend: SqlDriver.Backend

    The back-end implementation for this profile

    The back-end implementation for this profile

    Definition Classes
    BasicProfile
  4. abstract def buildSequenceSchemaDescription(seq: SqlDriver.Sequence[_]): SqlDriver.SchemaDescription

    Definition Classes
    RelationalSequenceComponent
  5. abstract def buildTableSchemaDescription(table: SqlDriver.Table[_]): SqlDriver.SchemaDescription

    Definition Classes
    RelationalTableComponent
  6. abstract def compileInsert(n: Node): SqlDriver.CompiledInsert

    (Partially) ompile an AST for insert operations

    (Partially) ompile an AST for insert operations

    Definition Classes
    BasicProfile
  7. abstract def createDDLInvoker(ddl: SqlDriver.SchemaDescription): SqlDriver.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
  8. abstract def createInsertInvoker[T](compiled: SqlDriver.CompiledInsert): SqlDriver.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
    BasicInsertInvokerComponent
  9. abstract def createQueryExecutor[R](tree: Node, param: Any): SqlDriver.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
    SqlExecutorComponentBasicExecutorComponent
  10. abstract def createUnshapedQueryExecutor[M](value: M): SqlDriver.UnshapedQueryExecutor[M]

    Definition Classes
    BasicExecutorComponent
  11. abstract def deleteCompiler: QueryCompiler

    The compiler used for deleting data

    The compiler used for deleting data

    Definition Classes
    BasicProfile
  12. abstract def insertCompiler: QueryCompiler

    The compiler used for inserting data

    The compiler used for inserting data

    Definition Classes
    BasicProfile
  13. abstract def queryCompiler: QueryCompiler

    The compiler used for queries

    The compiler used for queries

    Definition Classes
    BasicProfile
  14. abstract val simple: SqlDriver.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.

    Definition Classes
    RelationalProfileBasicProfile
  15. abstract def updateCompiler: QueryCompiler

    The compiler used for updates

    The compiler used for updates

    Definition Classes
    BasicProfile

Concrete Value Members

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  6. object DDL

  7. object Sequence

    Definition Classes
    RelationalSequenceComponent
  8. final def asInstanceOf[T0]: T0

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

    The capabilities supported by this driver.

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

    Definition Classes
    BasicProfile
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. val columnOptions: SqlDriver.ColumnOptions

  12. final lazy val compiler: QueryCompiler

    Definition Classes
    RelationalProfile
  13. def computeCapabilities: Set[Capability]

    Compute the capabilities.

    Compute the capabilities. This should be overridden in subclasses as needed.

    Attributes
    protected
    Definition Classes
    SqlProfileRelationalProfileBasicProfile
  14. def computeQueryCompiler: QueryCompiler

    Attributes
    protected
    Definition Classes
    RelationalProfile
  15. def ensuring(cond: (SqlProfile) ⇒ Boolean, msg: ⇒ Any): SqlProfile

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def [B](y: B): (SqlProfile, B)

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

Inherited from SqlTableComponent

Inherited from SqlExecutorComponent

Inherited from RelationalProfile

Inherited from RelationalTypesComponent

Inherited from RelationalTableComponent

Inherited from BasicProfile

Inherited from BasicExecutorComponent

Inherited from BasicInvokerComponent

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped