RelationalProfile

slick.relational.RelationalProfile
See theRelationalProfile companion object

A profile for relational databases that does not assume the existence of SQL (or any other text-based language for executing statements). It requires a relational table structure as its basic model of data.

Attributes

Companion:
object
Source:
RelationalProfile.scala
Graph
Supertypes
Known subtypes
object MemoryProfile.type
object DB2Profile.type
object DerbyProfile.type
trait H2Profile
object H2Profile.type
object HsqldbProfile.type
object MySQLProfile.type
object OracleProfile.type
object PostgresProfile.type
object SQLServerProfile.type
object SQLiteProfile.type
Self type

Members list

Concise view

Type members

Classlikes

class FastPathExtensionMethods[R, W, U, T, P](val mp: MappedProjection[T, P])

Attributes

Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Attributes

Source:
RelationalProfile.scala
Graph
Supertypes
trait BasicAPI
trait Aliases
class Object
trait Matchable
class Any
Known subtypes
trait JdbcAPI
trait MemoryAPI
class TableQueryExtensionMethods[T <: Table[_], U](val q: Query[T, U, Seq] & TableQuery[T])

Attributes

Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Inherited classlikes

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
Graph
Supertypes
trait Aliases
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
BasicActionComponent
Source:
BasicProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
BasicActionComponent
Source:
BasicProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
RelationalActionComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
RelationalTypesComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
RelationalTableComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
RelationalTypesComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
RelationalActionComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

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.

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.

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait DDL
class DDL
class Sequence[T]

Attributes

Inherited from:
RelationalSequenceComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
object Sequence

Attributes

Inherited from:
RelationalSequenceComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class Object
trait Matchable
class Any
abstract class Table[T](_tableTag: Tag, _schemaName: Option[String], _tableName: String) extends AbstractTable[T]

Attributes

Inherited from:
RelationalTableComponent
Source:
RelationalProfile.scala
Graph
Supertypes
class AbstractTable[T]
trait Rep[T]
class Object
trait Matchable
class Any

Types

The back-end type required by this profile

The back-end type required by this profile

Attributes

Source:
RelationalProfile.scala

Inherited types

type ColumnType[T] <: TypedType[T]

Attributes

Inherited from:
RelationalTypesComponent
Source:
RelationalProfile.scala

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.

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.

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
type ProfileAction[+R, +S <: NoStream, -E <: Effect] <: BasicAction[R, S, E]

Attributes

Inherited from:
BasicActionComponent
Source:
BasicProfile.scala

The type of a schema description (DDL)

The type of a schema description (DDL)

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
type StreamingProfileAction[+R, +T, -E <: Effect] <: BasicStreamingAction[R, T, E] & ProfileAction[R, Streaming[T], E]

Attributes

Inherited from:
BasicActionComponent
Source:
BasicProfile.scala

Value members

Abstract methods

def runSynchronousQuery[R](tree: Node, param: Any)(implicit session: Session): R

Run a query synchronously on the provided session. This is used by DistributedProfile until we can make it fully asynchronous.

Run a query synchronously on the provided session. This is used by DistributedProfile until we can make it fully asynchronous.

Attributes

Source:
RelationalProfile.scala

Inherited methods

(Partially) compile an AST for insert operations

(Partially) compile an AST for insert operations

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala

Attributes

Inherited from:
BasicActionComponent
Source:
BasicProfile.scala

The compiler used for deleting data

The compiler used for deleting data

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala

The compiler used for inserting data

The compiler used for inserting data

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala

The compiler used for queries

The compiler used for queries

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
Inherited from:
BasicProfile
Source:
BasicProfile.scala

The compiler used for updates

The compiler used for updates

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala

Abstract fields

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.

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.

Attributes

Source:
RelationalProfile.scala

Concrete fields

final lazy val compiler: QueryCompiler

Attributes

Source:
RelationalProfile.scala

Inherited fields

The back-end implementation for this profile

The back-end implementation for this profile

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala
final val capabilities: Set[Capability]

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

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

Attributes

Inherited from:
BasicProfile
Source:
BasicProfile.scala