scala.slick.driver

JdbcProfile

trait JdbcProfile extends SqlProfile with JdbcTableComponent with JdbcActionComponent with JdbcInvokerComponent with JdbcInsertInvokerComponent with JdbcExecutorComponent with JdbcTypesComponent with JdbcModelComponent

A profile for accessing SQL databases via JDBC. All drivers for JDBC-based databases implement this profile.

Self Type
JdbcDriver
Source
JdbcProfile.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JdbcProfile
  2. JdbcModelComponent
  3. JdbcTypesComponent
  4. JdbcExecutorComponent
  5. JdbcInsertInvokerComponent
  6. JdbcInvokerComponent
  7. JdbcActionComponent
  8. JdbcTableComponent
  9. SqlProfile
  10. SqlActionComponent
  11. SqlTableComponent
  12. SqlExecutorComponent
  13. RelationalProfile
  14. RelationalActionComponent
  15. RelationalTypesComponent
  16. RelationalSequenceComponent
  17. RelationalTableComponent
  18. BasicProfile
  19. BasicActionComponent
  20. BasicExecutorComponent
  21. BasicInsertInvokerComponent
  22. BasicInvokerComponent
  23. AnyRef
  24. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait API extends JdbcDriver.LowPriorityAPI with JdbcDriver.API with JdbcDriver.CommonImplicits

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  2. type Backend = JdbcBackend

    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]

    Definition Classes
    JdbcProfileRelationalTypesComponent
  4. abstract class BaseInsertInvoker[U] extends JdbcDriver.FullInsertInvokerDef[U]

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  5. trait ColumnOptions extends JdbcDriver.ColumnOptions

  6. type ColumnType[T] = JdbcType[T]

    Definition Classes
    JdbcProfileRelationalTypesComponent
  7. trait CommonAPI extends RelationalDriver.CommonAPI

    Attributes
    protected
    Definition Classes
    RelationalProfileBasicProfile
  8. trait CommonImplicits extends JdbcDriver.CommonImplicits with JdbcDriver.ImplicitColumnTypes

    Attributes
    protected
    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  9. type CompiledInsert = JdbcDriver.JdbcCompiledInsert

    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
    JdbcProfileBasicInsertInvokerComponent
  10. trait CountingInsertActionComposer[U] extends JdbcDriver.InsertActionComposer[U]

    An InsertInvoker that returns the number of affected rows.

  11. class CountingInsertActionComposerImpl[U] extends JdbcDriver.InsertActionComposerImpl[U] with JdbcDriver.CountingInsertActionComposer[U]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  12. class CountingInsertInvoker[U] extends JdbcDriver.BaseInsertInvoker[U] with JdbcDriver.CountingInsertInvokerDef[U]

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  13. trait CountingInsertInvokerDef[U] extends JdbcDriver.FullInsertInvokerDef[U]

    An InsertInvoker that returns the number of affected rows.

  14. trait DDL extends SqlDriver.SchemaDescriptionDef

    Definition Classes
    SqlProfile
  15. class DDLInvoker extends JdbcDriver.DDLInvoker

    Pseudo-invoker for running DDL statements.

  16. type DeleteActionExtensionMethods = JdbcDriver.DeleteActionExtensionMethodsImpl

    Definition Classes
    JdbcActionComponent
  17. class DeleteActionExtensionMethodsImpl extends AnyRef

    Definition Classes
    JdbcActionComponent
  18. class DeleteInvoker extends AnyRef

    Pseudo-invoker for running DELETE calls.

  19. type DriverAction[-E <: Effect, +R, +S <: NoStream] = JdbcDriver.DriverActionDef[E, R, S]

  20. trait DriverActionDef[-E <: Effect, +R, +S <: NoStream] extends SqlDriver.DriverActionDef[E, R, S]

  21. abstract class DriverJdbcType[T] extends JdbcType[T]

    Definition Classes
    JdbcTypesComponent
  22. trait FullInsertInvokerDef[U] extends JdbcDriver.InsertInvokerDef[U]

    An InsertInvoker that can also insert from another query.

  23. trait ImplicitColumnTypes extends JdbcDriver.ImplicitColumnTypes

  24. trait Implicits extends JdbcDriver.LowPriorityImplicits with JdbcDriver.Implicits with JdbcDriver.CommonImplicits

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  25. trait InsertActionComposer[U] extends JdbcDriver.SimpleInsertActionComposer[U]

    Extension methods to generate the JDBC-specific insert actions.

  26. class InsertActionComposerImpl[U] extends JdbcDriver.InsertActionComposer[U]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  27. type InsertActionExtensionMethods[T] = JdbcDriver.CountingInsertActionComposerImpl[T]

  28. trait InsertActionExtensionMethodsImpl[T] extends AnyRef

    Definition Classes
    RelationalActionComponent
  29. type InsertInvoker[T] = JdbcDriver.CountingInsertInvokerDef[T]

    The type of insert invokers returned by the driver

    The type of insert invokers returned by the driver

    Definition Classes
    JdbcInsertInvokerComponentBasicInsertInvokerComponent
  30. trait InsertInvokerDef[U] extends JdbcDriver.InsertInvokerDef[U]

    The JDBC-specific InsertInvoker with additional methods

  31. trait IntoInsertActionComposer[U, RU] extends JdbcDriver.SimpleInsertActionComposer[U]

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

  32. trait IntoInsertInvokerDef[U, R] extends JdbcDriver.InsertInvokerDef[U]

    An InsertInvoker that returns a mapping of inserted values and generated keys.

  33. class JdbcActionExtensionMethods[E <: Effect, R, S <: NoStream] extends AnyRef

    Definition Classes
    JdbcActionComponent
  34. trait JdbcDriverAction[+R, +S <: NoStream] extends SynchronousDatabaseAction[JdbcBackend, Effect, R, S] with JdbcDriver.DriverAction[Effect, R, S]

    Definition Classes
    JdbcActionComponent
  35. class JdbcTypes extends AnyRef

    Definition Classes
    JdbcTypesComponent
  36. trait LowPriorityAPI extends AnyRef

  37. trait LowPriorityImplicits extends AnyRef

    Attributes
    protected
  38. trait MappedColumnTypeFactory extends AnyRef

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

    Definition Classes
    JdbcTypesComponent
  40. class ModelBuilder extends AnyRef

    Build a Slick model from introspecting the jdbc meta data.

  41. class MutatingResultAction[T] extends JdbcDriver.JdbcDriverAction[Nothing, Streaming[ResultSetMutator[T]]]

    Definition Classes
    JdbcActionComponent
  42. type QueryActionExtensionMethods[R, S <: NoStream] = JdbcDriver.QueryActionExtensionMethodsImpl[R, S]

  43. class QueryActionExtensionMethodsImpl[R, S <: NoStream] extends JdbcDriver.QueryActionExtensionMethodsImpl[R, S]

  44. type QueryExecutor[T] = JdbcDriver.QueryExecutorDef[T]

    The type of query executors returned by the driver

    The type of query executors returned by the driver

    Definition Classes
    JdbcExecutorComponentSqlExecutorComponentBasicExecutorComponent
  45. class QueryExecutorDef[R] extends JdbcDriver.QueryExecutorDef[R]

    Base class for QueryExecutor implementations

  46. trait QueryInvoker[R] extends StatementInvoker[R] with MutatingStatementInvoker[R]

    An Invoker for queries.

  47. class QueryInvokerImpl[R] extends StatementInvoker[R] with JdbcDriver.QueryInvoker[R]

    Definition Classes
    JdbcInvokerComponent
  48. trait ReturningInsertActionComposer[U, RU] extends JdbcDriver.InsertActionComposer[U]

    An InsertActionComposer that returns generated keys or other columns.

  49. class ReturningInsertInvoker[U, RU] extends JdbcDriver.BaseInsertInvoker[U] with JdbcDriver.ReturningInsertInvokerDef[U, RU]

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  50. trait ReturningInsertInvokerDef[U, RU] extends JdbcDriver.FullInsertInvokerDef[U]

    An InsertInvoker that returns generated keys or other columns.

  51. type SchemaActionExtensionMethods = JdbcDriver.SchemaActionExtensionMethodsImpl

  52. class SchemaActionExtensionMethodsImpl extends JdbcDriver.SchemaActionExtensionMethodsImpl

  53. type SchemaDescription = JdbcDriver.DDL

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    SqlProfileBasicProfile
  54. trait SchemaDescriptionDef extends AnyRef

    A schema description contains the SQL statements for creating and dropping database entities.

  55. class Sequence[T] extends Typed

    Definition Classes
    RelationalSequenceComponent
  56. type SimpleInsertAction[+R] = DatabaseAction[Write, R, NoStream]

    Definition Classes
    JdbcActionComponent
  57. trait SimpleInsertActionComposer[U] extends JdbcDriver.InsertActionExtensionMethodsImpl[U]

    Extension methods to generate the JDBC-specific insert actions.

  58. case class SimpleJdbcAction[+R](f: (ActionContext[JdbcBackend]) ⇒ R) extends SynchronousDatabaseAction[JdbcBackend, Effect, R, NoStream] with Product with Serializable

    Definition Classes
    JdbcActionComponent
  59. trait SimpleQL extends JdbcDriver.SimpleQL with JdbcDriver.Implicits

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  60. type StreamingDriverAction[-E <: Effect, +R, +T] = JdbcDriver.StreamingDriverActionDef[E, R, T] with JdbcDriver.DriverActionDef[E, R, Streaming[T]]

  61. trait StreamingDriverActionDef[-E <: Effect, +R, +T] extends BasicDriver.DriverActionDef[E, R, Streaming[T]]

    Definition Classes
    BasicActionComponent
  62. trait StreamingJdbcDriverAction[+R, +T] extends JdbcDriver.JdbcDriverAction[R, Streaming[T]] with JdbcDriver.StreamingDriverActionDef[Effect, R, T]

    Definition Classes
    JdbcActionComponent
  63. type StreamingQueryActionExtensionMethods[R, T] = JdbcDriver.StreamingQueryActionExtensionMethodsImpl[R, T]

  64. class StreamingQueryActionExtensionMethodsImpl[R, T] extends JdbcDriver.QueryActionExtensionMethodsImpl[R, Streaming[T]] with JdbcDriver.StreamingQueryActionExtensionMethodsImpl[R, T]

  65. class StreamingResultAction[R, T] extends JdbcDriver.StreamingJdbcDriverAction[R, T]

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

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

    Definition Classes
    RelationalProfile
  68. type UpdateActionExtensionMethods[T] = JdbcDriver.UpdateActionExtensionMethodsImpl[T]

    Definition Classes
    JdbcActionComponent
  69. class UpdateActionExtensionMethodsImpl[T] extends AnyRef

    Definition Classes
    JdbcActionComponent
  70. class UpdateInvoker[T] extends AnyRef

    Pseudo-invoker for running UPDATE calls.

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

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

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. object Commit extends SynchronousDatabaseAction[JdbcBackend, Effect, Unit, NoStream]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  9. object DDL

    Definition Classes
    SqlProfile
  10. lazy val Implicit: JdbcDriver.Implicits

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  11. object JdbcType

    Definition Classes
    JdbcTypesComponent
  12. lazy val MappedColumnType: JdbcDriver.MappedJdbcType.type

    Definition Classes
    JdbcProfileRelationalTypesComponent
  13. object MappedJdbcType extends JdbcDriver.MappedColumnTypeFactory

    Definition Classes
    JdbcTypesComponent
  14. object Rollback extends SynchronousDatabaseAction[JdbcBackend, Effect, Unit, NoStream]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  15. object Sequence

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

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  17. val api: JdbcDriver.API

    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 driver's implicits, the Database and Session objects for DB connections, and commonly used query language types and objects.

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

    Definition Classes
    Any
  19. val backend: JdbcDriver.Backend

    The back-end implementation for this profile

    The back-end implementation for this profile

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

  21. final def buildTableSchemaDescription(table: JdbcDriver.Table[_]): JdbcDriver.DDL

    Definition Classes
    JdbcProfileRelationalTableComponent
  22. 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
  23. lazy val checkInsertCompiler: QueryCompiler

  24. def clone(): AnyRef

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

  26. val columnTypes: JdbcDriver.JdbcTypes

  27. def compileInsert(tree: Node): JdbcDriver.JdbcCompiledInsert

    (Partially) ompile an AST for insert operations

    (Partially) ompile an AST for insert operations

    Definition Classes
    JdbcProfileBasicProfile
  28. final lazy val compiler: QueryCompiler

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

    Compute the capabilities.

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

    Attributes
    protected
    Definition Classes
    JdbcProfileSqlProfileRelationalProfileBasicProfile
  30. def computeQueryCompiler: QueryCompiler

    Attributes
    protected
    Definition Classes
    JdbcProfileRelationalProfile
  31. def createCountingInsertInvoker[U](compiled: JdbcDriver.CompiledInsert): JdbcDriver.CountingInsertInvokerDef[U]

    Definition Classes
    JdbcInsertInvokerComponent
  32. def createDDLInvoker(ddl: JdbcDriver.SchemaDescription): JdbcDriver.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
    JdbcInvokerComponentBasicInvokerComponent
  33. def createDeleteActionExtensionMethods(tree: Node, param: Any): JdbcDriver.DeleteActionExtensionMethods

    Definition Classes
    JdbcActionComponent
  34. def createDeleteInvoker(tree: Node, param: Any): JdbcDriver.DeleteInvoker

    Definition Classes
    JdbcInvokerComponent
  35. def createInsertActionExtensionMethods[T](compiled: JdbcDriver.CompiledInsert): JdbcDriver.InsertActionExtensionMethods[T]

  36. def createInsertInvoker[U](tree: JdbcDriver.CompiledInsert): JdbcDriver.CountingInsertInvokerDef[U]

    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
    JdbcInsertInvokerComponentBasicInsertInvokerComponent
  37. def createModel(tables: Option[Seq[MTable]] = None, ignoreInvalidDefaults: Boolean = true)(implicit session: SessionDef): Model

    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
  38. def createQueryActionExtensionMethods[R, S <: NoStream](tree: Node, param: Any): JdbcDriver.QueryActionExtensionMethods[R, S]

  39. def createQueryExecutor[R](tree: Node, param: Any): JdbcDriver.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
    JdbcExecutorComponentSqlExecutorComponentBasicExecutorComponent
  40. def createQueryInvoker[R](tree: Node, param: Any): JdbcDriver.QueryInvokerImpl[R]

    Definition Classes
    JdbcInvokerComponent
  41. def createReturningInsertInvoker[U, RU](compiled: JdbcDriver.CompiledInsert, keys: Node): JdbcDriver.ReturningInsertInvokerDef[U, RU]

    Definition Classes
    JdbcInsertInvokerComponent
  42. def createSchemaActionExtensionMethods(schema: JdbcDriver.SchemaDescription): JdbcDriver.SchemaActionExtensionMethods

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

  44. def createUpdateActionExtensionMethods[T](tree: Node, param: Any): JdbcDriver.UpdateActionExtensionMethods[T]

    Definition Classes
    JdbcActionComponent
  45. def createUpdateInvoker[T](tree: Node, param: Any): JdbcDriver.UpdateInvoker[T]

    Definition Classes
    JdbcInvokerComponent
  46. def defaultSqlTypeName(tmd: JdbcType[_]): String

    Definition Classes
    JdbcTypesComponent
  47. def defaultTables(implicit session: SessionDef): Seq[MTable]

    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
  48. lazy val deleteCompiler: QueryCompiler

    Definition Classes
    JdbcProfileBasicProfile
  49. def ensuring(cond: (JdbcProfile) ⇒ Boolean, msg: ⇒ Any): JdbcProfile

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

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

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

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

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

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

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

  57. def formatted(fmtstr: String): String

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

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

    Definition Classes
    AnyRef → Any
  60. lazy val insertCompiler: QueryCompiler

    Definition Classes
    JdbcProfileBasicProfile
  61. val invokerMutateConcurrency: ResultSetConcurrency

    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  62. val invokerMutateType: ResultSetType

    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  63. val invokerPreviousAfterDelete: Boolean

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

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

    Definition Classes
    JdbcTypesComponent
  66. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  69. lazy val queryCompiler: QueryCompiler

    Definition Classes
    JdbcProfileBasicProfile
  70. val simple: JdbcDriver.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
    JdbcProfileRelationalProfileBasicProfile
  71. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  72. def toString(): String

    Definition Classes
    AnyRef → Any
  73. lazy val updateCompiler: QueryCompiler

    Definition Classes
    JdbcProfileBasicProfile
  74. lazy val updateInsertCompiler: QueryCompiler

  75. lazy val upsertCompiler: QueryCompiler

  76. lazy val useServerSideUpsert: Boolean

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  77. lazy val useServerSideUpsertReturning: Boolean

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  78. lazy val useTransactionForUpsert: Boolean

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  79. lazy val useTransactionForUpsertReturning: Boolean

    Attributes
    protected
    Definition Classes
    JdbcInsertInvokerComponent
  80. final def wait(): Unit

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

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

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

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

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from JdbcProfile to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcProfile: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JdbcProfile to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcProfile: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def createModel(implicit session: SessionDef): Model

    Definition Classes
    JdbcModelComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1) use createModel() instead (appending parenthesis)

  2. final def getTables: Invoker[MTable]

    Definition Classes
    JdbcModelComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1) use defaultTables instead

  3. def x: JdbcProfile

    Implicit information
    This member is added by an implicit conversion from JdbcProfile to ArrowAssoc[JdbcProfile] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcProfile: ArrowAssoc[JdbcProfile]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  4. def x: JdbcProfile

    Implicit information
    This member is added by an implicit conversion from JdbcProfile to Ensuring[JdbcProfile] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcProfile: Ensuring[JdbcProfile]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from JdbcModelComponent

Inherited from JdbcTypesComponent

Inherited from JdbcExecutorComponent

Inherited from JdbcInvokerComponent

Inherited from JdbcActionComponent

Inherited from JdbcTableComponent

Inherited from SqlProfile

Inherited from SqlActionComponent

Inherited from SqlTableComponent

Inherited from SqlExecutorComponent

Inherited from RelationalProfile

Inherited from RelationalActionComponent

Inherited from RelationalTypesComponent

Inherited from RelationalTableComponent

Inherited from BasicProfile

Inherited from BasicActionComponent

Inherited from BasicExecutorComponent

Inherited from BasicInvokerComponent

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JdbcProfile to StringAdd

Inherited by implicit conversion any2stringfmt from JdbcProfile to StringFormat

Inherited by implicit conversion any2ArrowAssoc from JdbcProfile to ArrowAssoc[JdbcProfile]

Inherited by implicit conversion any2Ensuring from JdbcProfile to Ensuring[JdbcProfile]

Ungrouped