Object/Trait

slick.jdbc

H2Profile

Related Docs: trait H2Profile | package jdbc

Permalink

object H2Profile extends H2Profile

Source
H2Profile.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. H2Profile
  2. H2Profile
  3. JdbcProfile
  4. JdbcMappingCompilerComponent
  5. JdbcStatementBuilderComponent
  6. JdbcModelComponent
  7. JdbcTypesComponent
  8. JdbcInvokerComponent
  9. JdbcActionComponent
  10. SqlProfile
  11. SqlUtilsComponent
  12. SqlActionComponent
  13. SqlTableComponent
  14. RelationalProfile
  15. RelationalActionComponent
  16. RelationalTypesComponent
  17. RelationalSequenceComponent
  18. RelationalTableComponent
  19. BasicProfile
  20. BasicActionComponent
  21. AnyRef
  22. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait API extends LowPriorityAPI with JdbcProfile.API with ImplicitColumnTypes

    Permalink
    Definition Classes
    JdbcProfile
  2. type Backend = JdbcBackend

    Permalink

    The back-end type required by this profile

    The back-end type required by this profile

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  3. type BaseColumnType[T] = JdbcType[T] with BaseTypedType[T]

    Permalink
    Definition Classes
    JdbcProfileRelationalTypesComponent
  4. class CheckInsertBuilder extends JdbcProfile.UpsertBuilder

    Permalink

    Builder for SELECT statements that can be used to check for the existing of primary keys supplied to an INSERT operation.

    Builder for SELECT statements that can be used to check for the existing of primary keys supplied to an INSERT operation. Used by the insertOrUpdate emulation on databases that don't support this in a single server-side statement.

    Definition Classes
    JdbcStatementBuilderComponent
  5. class ColumnDDLBuilder extends H2Profile.ColumnDDLBuilder

    Permalink
    Definition Classes
    H2Profile
  6. trait ColumnOptions extends SqlProfile.ColumnOptions

    Permalink
    Definition Classes
    SqlTableComponent
  7. type ColumnType[T] = JdbcType[T]

    Permalink
    Definition Classes
    JdbcProfileRelationalTypesComponent
  8. type CompiledInsert = JdbcCompiledInsert

    Permalink

    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
    JdbcProfileBasicProfile
  9. trait CountingInsertActionComposer[U] extends JdbcProfile.InsertActionComposer[U]

    Permalink

    An InsertInvoker that returns the number of affected rows.

    An InsertInvoker that returns the number of affected rows.

    Definition Classes
    JdbcActionComponent
  10. class CountingInsertActionComposerImpl[U] extends H2Profile.CountingInsertActionComposerImpl[U]

    Permalink
    Definition Classes
    H2Profile
  11. trait DDL extends SchemaDescriptionDef

    Permalink
    Definition Classes
    SqlProfile
  12. type DeleteActionExtensionMethods = DeleteActionExtensionMethodsImpl

    Permalink
    Definition Classes
    JdbcActionComponent
  13. class DeleteActionExtensionMethodsImpl extends AnyRef

    Permalink
    Definition Classes
    JdbcActionComponent
  14. abstract class DriverJdbcType[T] extends JdbcType[T]

    Permalink
    Definition Classes
    JdbcTypesComponent
  15. class FastPathExtensionMethods[M <: ResultConverterDomain, T, P] extends AnyRef

    Permalink
    Definition Classes
    RelationalProfile
  16. trait ImplicitColumnTypes extends JdbcProfile.ImplicitColumnTypes

    Permalink
    Definition Classes
    JdbcTypesComponent
  17. trait InsertActionComposer[U] extends JdbcProfile.SimpleInsertActionComposer[U]

    Permalink

    Extension methods to generate the JDBC-specific insert actions.

    Extension methods to generate the JDBC-specific insert actions.

    Definition Classes
    JdbcActionComponent
  18. abstract class InsertActionComposerImpl[U] extends JdbcProfile.InsertActionComposer[U]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  19. type InsertActionExtensionMethods[T] = CountingInsertActionComposer[T]

    Permalink
  20. trait InsertActionExtensionMethodsImpl[T] extends AnyRef

    Permalink
    Definition Classes
    RelationalActionComponent
  21. class InsertBuilder extends AnyRef

    Permalink

    Builder for INSERT statements.

    Builder for INSERT statements.

    Definition Classes
    JdbcStatementBuilderComponent
  22. trait IntoInsertActionComposer[U, RU] extends JdbcProfile.SimpleInsertActionComposer[U]

    Permalink

    An InsertActionComposer that returns a mapping of the inserted and generated data.

    An InsertActionComposer that returns a mapping of the inserted and generated data.

    Definition Classes
    JdbcActionComponent
  23. class JdbcActionExtensionMethods[E <: Effect, R, S <: NoStream] extends AnyRef

    Permalink
    Definition Classes
    JdbcActionComponent
  24. class JdbcCodeGen extends CodeGen

    Permalink

    Code generator phase for queries on JdbcProfile.

    Code generator phase for queries on JdbcProfile.

    Definition Classes
    JdbcMappingCompilerComponent
  25. class JdbcCompiledInsert extends AnyRef

    Permalink
  26. class JdbcInsertCodeGen extends CodeGen

    Permalink

    Code generator phase for inserts on JdbcProfile.

    Code generator phase for inserts on JdbcProfile.

    Definition Classes
    JdbcMappingCompilerComponent
  27. class JdbcTypes extends H2Profile.JdbcTypes

    Permalink
    Definition Classes
    H2Profile
  28. trait LowPriorityAPI extends AnyRef

    Permalink
    Definition Classes
    JdbcProfile
  29. trait MappedColumnTypeFactory extends AnyRef

    Permalink
    Definition Classes
    RelationalTypesComponent
  30. abstract class MappedJdbcType[T, U] extends JdbcType[T]

    Permalink
    Definition Classes
    JdbcTypesComponent
  31. class MappingCompiler extends ResultConverterCompiler[JdbcResultConverterDomain]

    Permalink

    A ResultConverterCompiler that builds JDBC-based converters.

    A ResultConverterCompiler that builds JDBC-based converters. Instances of this class use mutable state internally. They are meant to be used for a single conversion only and must not be shared or reused.

    Definition Classes
    JdbcMappingCompilerComponent
  32. class ModelBuilder extends JdbcModelBuilder

    Permalink
    Definition Classes
    H2Profile
  33. class MutatingResultAction[T] extends SynchronousDatabaseAction[Nothing, Streaming[ResultSetMutator[T]], Backend, Effect] with JdbcProfile.ProfileAction[Nothing, Streaming[ResultSetMutator[T]], Effect]

    Permalink
    Definition Classes
    JdbcActionComponent
  34. type ProfileAction[+R, +S <: NoStream, -E <: Effect] = FixedSqlAction[R, S, E]

    Permalink
  35. class PushStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  36. type QueryActionExtensionMethods[R, S <: NoStream] = QueryActionExtensionMethodsImpl[R, S]

    Permalink
  37. class QueryActionExtensionMethodsImpl[R, S <: NoStream] extends JdbcProfile.QueryActionExtensionMethodsImpl[R, S]

    Permalink
    Definition Classes
    JdbcActionComponent
  38. class QueryBuilder extends H2Profile.QueryBuilder

    Permalink
    Definition Classes
    H2Profile
  39. trait QueryInvoker[R] extends StatementInvoker[R]

    Permalink

    An Invoker for queries.

    An Invoker for queries.

    Definition Classes
    JdbcInvokerComponent
  40. class QueryInvokerImpl[R] extends StatementInvoker[R] with JdbcProfile.QueryInvoker[R]

    Permalink
    Definition Classes
    JdbcInvokerComponent
  41. class QuotingSymbolNamer extends SymbolNamer

    Permalink
    Definition Classes
    SqlUtilsComponent
  42. trait ReturningInsertActionComposer[U, RU] extends JdbcProfile.InsertActionComposer[U] with JdbcProfile.IntoInsertActionComposer[U, RU]

    Permalink

    An InsertActionComposer that returns generated keys or other columns.

    An InsertActionComposer that returns generated keys or other columns.

    Definition Classes
    JdbcActionComponent
  43. class ReturningInsertActionComposerImpl[U, QR, RU] extends JdbcProfile.InsertActionComposerImpl[U] with JdbcProfile.ReturningInsertActionComposer[U, RU]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  44. type SchemaActionExtensionMethods = SchemaActionExtensionMethodsImpl

    Permalink
  45. class SchemaActionExtensionMethodsImpl extends JdbcProfile.SchemaActionExtensionMethodsImpl

    Permalink
    Definition Classes
    JdbcActionComponent
  46. type SchemaDescription = DDL

    Permalink

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    SqlProfileBasicProfile
  47. trait SchemaDescriptionDef extends AnyRef

    Permalink

    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
  48. class Sequence[T] extends AnyRef

    Permalink
    Definition Classes
    RelationalSequenceComponent
  49. class SequenceDDLBuilder extends AnyRef

    Permalink

    Builder for DDL statements for sequences.

    Builder for DDL statements for sequences.

    Definition Classes
    JdbcStatementBuilderComponent
  50. class SetTransactionIsolation extends SynchronousDatabaseAction[Int, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  51. trait SimpleInsertActionComposer[U] extends JdbcProfile.InsertActionExtensionMethodsImpl[U]

    Permalink

    Extension methods to generate the JDBC-specific insert actions.

    Extension methods to generate the JDBC-specific insert actions.

    Definition Classes
    JdbcActionComponent
  52. abstract class SimpleJdbcProfileAction[+R] extends SynchronousDatabaseAction[R, NoStream, Backend, Effect] with JdbcProfile.ProfileAction[R, NoStream, Effect]

    Permalink
    Definition Classes
    JdbcActionComponent
  53. abstract class StatementPart extends AnyRef

    Permalink
  54. type StreamingProfileAction[+R, +T, -E <: Effect] = FixedSqlStreamingAction[R, T, E]

    Permalink
  55. type StreamingQueryActionExtensionMethods[R, T] = StreamingQueryActionExtensionMethodsImpl[R, T]

    Permalink
  56. class StreamingQueryActionExtensionMethodsImpl[R, T] extends JdbcProfile.QueryActionExtensionMethodsImpl[R, Streaming[T]] with JdbcProfile.StreamingQueryActionExtensionMethodsImpl[R, T]

    Permalink
    Definition Classes
    JdbcActionComponent
  57. abstract class Table[T] extends AbstractTable[T]

    Permalink
    Definition Classes
    RelationalTableComponent
  58. class TableDDLBuilder extends AnyRef

    Permalink

    Builder for various DDL statements.

    Builder for various DDL statements.

    Definition Classes
    JdbcStatementBuilderComponent
  59. class TableQueryExtensionMethods[T <: Table[_], U] extends AnyRef

    Permalink
    Definition Classes
    RelationalProfile
  60. type UpdateActionExtensionMethods[T] = UpdateActionExtensionMethodsImpl[T]

    Permalink
    Definition Classes
    JdbcActionComponent
  61. class UpdateActionExtensionMethodsImpl[T] extends AnyRef

    Permalink
    Definition Classes
    JdbcActionComponent
  62. class UpdateInsertBuilder extends JdbcProfile.UpsertBuilder

    Permalink

    Builder for UPDATE statements used as part of an insertOrUpdate operation on databases that don't support this in a single server-side statement.

    Builder for UPDATE statements used as part of an insertOrUpdate operation on databases that don't support this in a single server-side statement.

    Definition Classes
    JdbcStatementBuilderComponent
  63. class UpsertBuilder extends InsertBuilder

    Permalink
    Definition Classes
    H2Profile
  64. final type DriverAction[+R, +S <: NoStream, -E <: Effect] = ProfileAction[R, S, E]

    Permalink
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use ProfileAction instead of DriverAction

  65. final type StreamingDriverAction[+R, +T, -E <: Effect] = StreamingProfileAction[R, T, E]

    Permalink
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use StreamingProfileAction instead of StreamingDriverAction

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Commit extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  5. object DDL

    Permalink
    Definition Classes
    SqlProfile
  6. object FromPart extends JdbcProfile.StatementPart with Product with Serializable

    Permalink
  7. object HavingPart extends JdbcProfile.StatementPart with Product with Serializable

    Permalink
  8. object JdbcType

    Permalink
    Definition Classes
    JdbcTypesComponent
  9. lazy val MappedColumnType: MappedJdbcType.type

    Permalink
    Definition Classes
    JdbcProfileRelationalTypesComponent
  10. object MappedJdbcType extends JdbcProfile.MappedColumnTypeFactory

    Permalink
    Definition Classes
    JdbcTypesComponent
  11. object OtherPart extends JdbcProfile.StatementPart with Product with Serializable

    Permalink
  12. object PopStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  13. object Rollback extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  14. object SelectPart extends JdbcProfile.StatementPart with Product with Serializable

    Permalink
  15. object Sequence

    Permalink
    Definition Classes
    RelationalSequenceComponent
  16. object StartTransaction extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  17. object WherePart extends JdbcProfile.StatementPart with Product with Serializable

    Permalink
  18. val api: API

    Permalink

    The API for using the query language with a single import statement.

    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.

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  19. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  20. val backend: Backend

    Permalink

    The back-end implementation for this profile

    The back-end implementation for this profile

    Definition Classes
    JdbcProfileBasicProfile
  21. final def buildSequenceSchemaDescription(seq: Sequence[_]): DDL

    Permalink
  22. final def buildTableSchemaDescription(table: Table[_]): DDL

    Permalink
    Definition Classes
    JdbcProfileRelationalTableComponent
  23. final val capabilities: Set[Capability]

    Permalink

    The capabilities supported by this profile.

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

    Definition Classes
    BasicProfile
  24. lazy val checkInsertCompiler: QueryCompiler

    Permalink
    Definition Classes
    JdbcProfile
  25. def clone(): AnyRef

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

    Permalink
  27. val columnTypes: JdbcTypes

    Permalink
    Definition Classes
    H2ProfileJdbcProfile
  28. def compileInsert(tree: Node): JdbcCompiledInsert

    Permalink

    (Partially) ompile an AST for insert operations

    (Partially) ompile an AST for insert operations

    Definition Classes
    JdbcProfileBasicProfile
  29. final lazy val compiler: QueryCompiler

    Permalink
    Definition Classes
    RelationalProfile
  30. def computeCapabilities: Set[Capability]

    Permalink

    Compute the capabilities.

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

    Attributes
    protected
    Definition Classes
    H2ProfileJdbcProfileSqlProfileRelationalProfileBasicProfile
  31. def computeQueryCompiler: QueryCompiler

    Permalink
    Attributes
    protected
    Definition Classes
    H2ProfileSqlProfileRelationalProfile
  32. def createBaseResultConverter[T](ti: JdbcType[T], name: String, idx: Int): ResultConverter[JdbcResultConverterDomain, T]

    Permalink

    Create a (possibly specialized) ResultConverter for the given JdbcType.

    Create a (possibly specialized) ResultConverter for the given JdbcType.

    Definition Classes
    JdbcMappingCompilerComponent
  33. def createCheckInsertBuilder(node: Insert): InsertBuilder

    Permalink
  34. def createColumnDDLBuilder(column: FieldSymbol, table: Table[_]): ColumnDDLBuilder

    Permalink
  35. def createDeleteActionExtensionMethods(tree: Node, param: Any): DeleteActionExtensionMethods

    Permalink
    Definition Classes
    JdbcActionComponent
  36. def createInsertActionExtensionMethods[T](compiled: CompiledInsert): InsertActionExtensionMethods[T]

    Permalink
  37. def createInsertBuilder(node: Insert): InsertBuilder

    Permalink
  38. def createModel(tables: Option[DBIO[Seq[MTable]]] = None, ignoreInvalidDefaults: Boolean = true)(implicit ec: ExecutionContext): DBIO[Model]

    Permalink

    Gets the Slick data model describing this data source

    Gets the Slick data model describing this data source

    tables

    used to build the model, uses defaultTables if None given

    ignoreInvalidDefaults

    logs unrecognized default values instead of throwing an exception

    Definition Classes
    JdbcModelComponent
  39. def createModelBuilder(tables: Seq[MTable], ignoreInvalidDefaults: Boolean)(implicit ec: ExecutionContext): JdbcModelBuilder

    Permalink
    Definition Classes
    H2ProfileJdbcModelComponent
  40. def createOptionResultConverter[T](ti: JdbcType[T], idx: Int): ResultConverter[JdbcResultConverterDomain, Option[T]]

    Permalink

    Create a (possibly specialized) ResultConverter for Option values of the given JdbcType.

    Create a (possibly specialized) ResultConverter for Option values of the given JdbcType.

    Definition Classes
    JdbcMappingCompilerComponent
  41. def createQueryActionExtensionMethods[R, S <: NoStream](tree: Node, param: Any): QueryActionExtensionMethods[R, S]

    Permalink
  42. def createQueryBuilder(n: Node, state: CompilerState): QueryBuilder

    Permalink
  43. def createQueryInvoker[R](tree: Node, param: Any, sql: String): QueryInvokerImpl[R]

    Permalink
    Definition Classes
    JdbcInvokerComponent
  44. def createReturningInsertActionComposer[U, QR, RU](compiled: CompiledInsert, keys: Node, mux: (U, QR) ⇒ RU): ReturningInsertActionComposer[U, RU]

    Permalink
    Definition Classes
    JdbcActionComponent
  45. def createSchemaActionExtensionMethods(schema: SchemaDescription): SchemaActionExtensionMethods

    Permalink
  46. def createSequenceDDLBuilder(seq: Sequence[_]): SequenceDDLBuilder

    Permalink
  47. def createStreamingQueryActionExtensionMethods[R, T](tree: Node, param: Any): StreamingQueryActionExtensionMethods[R, T]

    Permalink
  48. def createTableDDLBuilder(table: Table[_]): TableDDLBuilder

    Permalink
  49. def createUpdateActionExtensionMethods[T](tree: Node, param: Any): UpdateActionExtensionMethods[T]

    Permalink
    Definition Classes
    JdbcActionComponent
  50. def createUpdateInsertBuilder(node: Insert): InsertBuilder

    Permalink
  51. def createUpsertBuilder(node: Insert): InsertBuilder

    Permalink
  52. def defaultSqlTypeName(tmd: JdbcType[_], sym: Option[FieldSymbol]): String

    Permalink
    Definition Classes
    H2ProfileJdbcTypesComponent
  53. def defaultTables(implicit ec: ExecutionContext): DBIO[Seq[MTable]]

    Permalink

    Jdbc meta data for all tables included in the Slick model by default

    Jdbc meta data for all tables included in the Slick model by default

    Definition Classes
    JdbcModelComponent
  54. lazy val deleteCompiler: QueryCompiler

    Permalink

    The compiler used for deleting data

    The compiler used for deleting data

    Definition Classes
    JdbcProfileBasicProfile
  55. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. lazy val forceInsertCompiler: QueryCompiler

    Permalink
    Definition Classes
    JdbcProfile
  59. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  61. lazy val insertCompiler: QueryCompiler

    Permalink

    The compiler used for inserting data

    The compiler used for inserting data

    Definition Classes
    JdbcProfileBasicProfile
  62. val invokerMutateConcurrency: ResultSetConcurrency

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  63. val invokerMutateType: ResultSetType

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  64. val invokerPreviousAfterDelete: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  65. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  66. def jdbcTypeFor(t: Type): JdbcType[Any]

    Permalink
    Definition Classes
    JdbcTypesComponent
  67. def likeEncode(s: String): String

    Permalink
    Definition Classes
    SqlUtilsComponent
  68. def loadProfileConfig: Config

    Permalink

    Load the configuration for this profile.

    Load the configuration for this profile. This can be overridden in user-defined subclasses to load different configurations.

    The default implementation does a breadth-first search in the supertype hierarchy of the runtime class until it finds a class or trait with a name matching "slick.[...]Profile" and then returns uses this name as a path in the application config. If no configuration exists at this path, an empty Config object is returned.

    Attributes
    protected[this]
    Definition Classes
    BasicProfile
  69. val mappingCompiler: MappingCompiler

    Permalink

    The MappingCompiler for this profile.

    The MappingCompiler for this profile.

    Definition Classes
    JdbcMappingCompilerComponent
  70. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  73. final lazy val profileConfig: Config

    Permalink

    The configuration for this profile, loaded via loadProfileConfig.

    The configuration for this profile, loaded via loadProfileConfig.

    Attributes
    protected[this]
    Definition Classes
    BasicProfile
  74. lazy val queryCompiler: QueryCompiler

    Permalink

    The compiler used for queries

    The compiler used for queries

    Definition Classes
    JdbcProfileBasicProfile
  75. def quoteIdentifier(id: String): String

    Permalink

    quotes identifiers to avoid collisions with SQL keywords and other syntax issues

    quotes identifiers to avoid collisions with SQL keywords and other syntax issues

    Definition Classes
    SqlUtilsComponent
  76. def quoteTableName(t: TableNode): String

    Permalink
    Definition Classes
    SqlUtilsComponent
  77. def runSynchronousQuery[R](tree: Node, param: Any)(implicit session: SessionDef): R

    Permalink

    Run a query synchronously on the provided session.

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

    Definition Classes
    JdbcProfileRelationalProfile
  78. val scalarFrom: Option[String]

    Permalink

    The table name for scalar selects (e.g.

    The table name for scalar selects (e.g. "select 42 from DUAL;"), or None for scalar selects without a FROM clause ("select 42;").

    Definition Classes
    JdbcStatementBuilderComponent
  79. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    BasicProfile → AnyRef → Any
  81. lazy val updateCompiler: QueryCompiler

    Permalink

    The compiler used for updates

    The compiler used for updates

    Definition Classes
    JdbcProfileBasicProfile
  82. lazy val updateInsertCompiler: QueryCompiler

    Permalink
    Definition Classes
    JdbcProfile
  83. lazy val upsertCompiler: QueryCompiler

    Permalink
    Definition Classes
    JdbcProfile
  84. lazy val useServerSideUpsert: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  85. lazy val useServerSideUpsertReturning: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  86. lazy val useTransactionForUpsert: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  87. lazy val useTransactionForUpsertReturning: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  88. def valueToSQLLiteral(v: Any, tpe: Type): String

    Permalink

    Create a SQL representation of a literal value.

    Create a SQL representation of a literal value.

    Definition Classes
    JdbcStatementBuilderComponent
  89. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. val profile: JdbcProfile

    Permalink

    The external interface of this profile which defines the API.

    The external interface of this profile which defines the API.

    Definition Classes
    JdbcProfileSqlProfileRelationalProfileBasicProfile
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use the Profile object directly instead of calling .profile on it

Inherited from H2Profile

Inherited from JdbcProfile

Inherited from JdbcModelComponent

Inherited from JdbcTypesComponent

Inherited from JdbcInvokerComponent

Inherited from JdbcActionComponent

Inherited from SqlProfile

Inherited from SqlUtilsComponent

Inherited from SqlActionComponent

Inherited from SqlTableComponent

Inherited from RelationalProfile

Inherited from RelationalActionComponent

Inherited from RelationalTypesComponent

Inherited from RelationalTableComponent

Inherited from BasicProfile

Inherited from BasicActionComponent

Inherited from AnyRef

Inherited from Any

Ungrouped