slick.relational
Contains the abstract RelationalProfile and related code.
Attributes
Members list
Type members
Classlikes
A node that wraps a ResultConverter
A node that wraps a ResultConverter
Attributes
- Source
- ResultConverterCompiler.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait SimplyTypedNodetrait NullaryNodetrait Nodetrait Dumpableclass Objecttrait Matchableclass AnyShow all
Result converter that can write to multiple sub-converters and read from the first one
Result converter that can write to multiple sub-converters and read from the first one
Attributes
- Source
- ResultConverter.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Dumpableclass Objecttrait Matchableclass AnyShow all
Attributes
- Source
- ResultConverter.scala
- Supertypes
Attributes
- Source
- ResultConverter.scala
- Supertypes
Attributes
- Source
- ResultConverter.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Dumpableclass Objecttrait Matchableclass AnyShow all
An efficient (albeit boxed) ResultConverter for Product/Tuple values.
An efficient (albeit boxed) ResultConverter for Product/Tuple values.
Attributes
- Source
- ResultConverter.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Dumpableclass Objecttrait Matchableclass AnyShow all
Attributes
- Source
- RelationalProfile.scala
- Supertypes
- Known subtypes
-
trait RelationalProfiletrait MemoryProfileobject MemoryProfile.typetrait SqlProfiletrait JdbcProfiletrait DB2Profileobject DB2Profile.typetrait DerbyProfileobject DerbyProfile.typetrait H2Profileobject H2Profile.typetrait HsqldbProfileobject HsqldbProfile.typetrait MySQLProfileobject MySQLProfile.typetrait OracleProfileobject OracleProfile.typetrait PostgresProfileobject PostgresProfile.typetrait SQLServerProfileobject SQLServerProfile.typetrait SQLiteProfileobject SQLiteProfile.typetrait SqlActionComponenttrait JdbcActionComponenttrait OneRowPerStatementOnlyShow all
- Self type
The required backend level for RelationalProfile.
The required backend level for RelationalProfile.
Attributes
- Source
- RelationalBackend.scala
- Supertypes
- Known subtypes
-
trait JdbcBackendobject JdbcBackend.typetrait DistributedBackendobject DistributedBackend.typetrait HeapBackendobject HeapBackend.typeShow all
Capabilities for slick.relational.RelationalProfile.
Capabilities for slick.relational.RelationalProfile.
Attributes
- Source
- RelationalCapabilities.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
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.
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
- Supertypes
-
trait RelationalTypesComponenttrait RelationalTableComponenttrait BasicProfiletrait BasicActionComponentclass Objecttrait Matchableclass AnyShow all
- Known subtypes
-
trait MemoryProfileobject MemoryProfile.typetrait SqlProfiletrait JdbcProfiletrait DB2Profileobject DB2Profile.typetrait DerbyProfileobject DerbyProfile.typetrait H2Profileobject H2Profile.typetrait HsqldbProfileobject HsqldbProfile.typetrait MySQLProfileobject MySQLProfile.typetrait OracleProfileobject OracleProfile.typetrait PostgresProfileobject PostgresProfile.typetrait SQLServerProfileobject SQLServerProfile.typetrait SQLiteProfileobject SQLiteProfile.typeShow all
- Self type
Attributes
- Companion
- trait
- Source
- RelationalProfile.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
RelationalProfile.type
Attributes
- Source
- RelationalProfile.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
trait RelationalProfiletrait MemoryProfileobject MemoryProfile.typetrait SqlProfiletrait JdbcProfiletrait DB2Profileobject DB2Profile.typetrait DerbyProfileobject DerbyProfile.typetrait H2Profileobject H2Profile.typetrait HsqldbProfileobject HsqldbProfile.typetrait MySQLProfileobject MySQLProfile.typetrait OracleProfileobject OracleProfile.typetrait PostgresProfileobject PostgresProfile.typetrait SQLServerProfileobject SQLServerProfile.typetrait SQLiteProfileobject SQLiteProfile.typeShow all
- Self type
Attributes
- Source
- RelationalProfile.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
trait RelationalProfiletrait MemoryProfileobject MemoryProfile.typetrait SqlProfiletrait JdbcProfiletrait DB2Profileobject DB2Profile.typetrait DerbyProfileobject DerbyProfile.typetrait H2Profileobject H2Profile.typetrait HsqldbProfileobject HsqldbProfile.typetrait MySQLProfileobject MySQLProfile.typetrait OracleProfileobject OracleProfile.typetrait PostgresProfileobject PostgresProfile.typetrait SQLServerProfileobject SQLServerProfile.typetrait SQLiteProfileobject SQLiteProfile.typetrait SqlTableComponentShow all
- Self type
Attributes
- Source
- RelationalProfile.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
trait JdbcTypesComponenttrait JdbcProfiletrait DB2Profileobject DB2Profile.typetrait DerbyProfileobject DerbyProfile.typetrait H2Profileobject H2Profile.typetrait HsqldbProfileobject HsqldbProfile.typetrait MySQLProfileobject MySQLProfile.typetrait OracleProfileobject OracleProfile.typetrait PostgresProfileobject PostgresProfile.typetrait SQLServerProfileobject SQLServerProfile.typetrait SQLiteProfileobject SQLiteProfile.typetrait RelationalProfiletrait MemoryProfileobject MemoryProfile.typetrait SqlProfileShow all
- Self type
A ResultConverter is used to read data from a result, update a result, and set parameters of a query.
A ResultConverter is used to read data from a result, update a result, and set parameters of a query.
Attributes
- Source
- ResultConverter.scala
- Supertypes
- Known subtypes
-
class BaseResultConverter[T]class DefaultingResultConverter[T]class IsDefinedResultConverter[T]class OptionResultConverter[T]class InsertResultConverterclass QueryResultConverterShow all
Create a ResultConverter for parameters and result sets. Subclasses have to provide profile-specific createColumnConverter implementations.
Create a ResultConverter for parameters and result sets. Subclasses have to provide profile-specific createColumnConverter implementations.
Attributes
- Companion
- object
- Source
- ResultConverterCompiler.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Attributes
- Companion
- trait
- Source
- ResultConverterCompiler.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
A ResultConverter that simplifies the implementation of fast path converters. It always wraps a TypeMappingResultConverter on top of a ProductResultConverter, allowing direct access to the product elements.
A ResultConverter that simplifies the implementation of fast path converters. It always wraps a TypeMappingResultConverter on top of a ProductResultConverter, allowing direct access to the product elements.
Attributes
- Source
- ResultConverter.scala
- Supertypes
Attributes
- Source
- ResultConverter.scala
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Dumpableclass Objecttrait Matchableclass AnyShow all
Attributes
- Source
- ResultConverter.scala
- Supertypes