slick.driver

MySQLDriver

Related Docs: object MySQLDriver | package driver

trait MySQLDriver extends JdbcDriver

Slick driver for MySQL.

This driver implements slick.driver.JdbcProfile without the following capabilities:

Sequences are supported through an emulation which requires the schema to be created by Slick. You can also use an existing schema with your own sequence emulation if you provide for each sequence s a pair of functions s_nextval and s_currval.

The default type for strings of unlimited length is "TEXT", falling back to "VARCHAR(254)" if a Default or PrimaryKey column option is set. This can be changed by overriding slick.driver.MySQL.defaultStringType in application.conf.

Self Type
MySQLDriver
Source
MySQLDriver.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MySQLDriver
  2. JdbcDriver
  3. JdbcMappingCompilerComponent
  4. JdbcStatementBuilderComponent
  5. JdbcProfile
  6. JdbcModelComponent
  7. JdbcTypesComponent
  8. JdbcInvokerComponent
  9. JdbcActionComponent
  10. SqlDriver
  11. SqlUtilsComponent
  12. SqlProfile
  13. SqlActionComponent
  14. SqlTableComponent
  15. RelationalDriver
  16. RelationalProfile
  17. RelationalActionComponent
  18. RelationalTypesComponent
  19. RelationalSequenceComponent
  20. RelationalTableComponent
  21. BasicDriver
  22. BasicProfile
  23. BasicActionComponent
  24. AnyRef
  25. 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. trait API extends JdbcDriver.LowPriorityAPI with JdbcDriver.API with JdbcDriver.ImplicitColumnTypes

    Definition Classes
    JdbcProfile
  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. class CheckInsertBuilder extends JdbcDriver.UpsertBuilder

    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 MySQLDriver.ColumnDDLBuilder

  6. trait ColumnOptions extends SqlDriver.ColumnOptions

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

    Definition Classes
    JdbcProfileRelationalTypesComponent
  8. type CompiledInsert = 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
    JdbcProfileBasicProfile
  9. trait CountingInsertActionComposer[U] extends JdbcDriver.InsertActionComposer[U]

    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 JdbcDriver.InsertActionComposerImpl[U] with JdbcDriver.CountingInsertActionComposer[U]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  11. trait DDL extends SqlDriver.SchemaDescriptionDef

    Definition Classes
    SqlProfile
  12. type DeleteActionExtensionMethods = DeleteActionExtensionMethodsImpl

    Definition Classes
    JdbcActionComponent
  13. class DeleteActionExtensionMethodsImpl extends AnyRef

    Definition Classes
    JdbcActionComponent
  14. type DriverAction[+R, +S <: NoStream, -E <: Effect] = FixedSqlAction[R, S, E]

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

    Definition Classes
    JdbcTypesComponent
  16. trait ImplicitColumnTypes extends JdbcDriver.ImplicitColumnTypes

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

    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 JdbcDriver.InsertActionComposer[U]

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

  20. trait InsertActionExtensionMethodsImpl[T] extends AnyRef

    Definition Classes
    RelationalActionComponent
  21. class InsertBuilder extends AnyRef

    Builder for INSERT statements.

    Builder for INSERT statements.

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

    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

    Definition Classes
    JdbcActionComponent
  24. class JdbcCodeGen extends CodeGen

    Code generator phase for queries on JdbcProfile-based drivers.

    Code generator phase for queries on JdbcProfile-based drivers.

    Definition Classes
    JdbcMappingCompilerComponent
  25. class JdbcCompiledInsert extends AnyRef

  26. class JdbcFastPathExtensionMethods[T, P] extends AnyRef

    Definition Classes
    JdbcMappingCompilerComponent
  27. class JdbcInsertCodeGen extends CodeGen

    Code generator phase for inserts on JdbcProfile-based drivers.

    Code generator phase for inserts on JdbcProfile-based drivers.

    Definition Classes
    JdbcMappingCompilerComponent
  28. class JdbcTypes extends MySQLDriver.JdbcTypes

  29. trait LowPriorityAPI extends AnyRef

    Definition Classes
    JdbcProfile
  30. trait MappedColumnTypeFactory extends AnyRef

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

    Definition Classes
    JdbcTypesComponent
  32. class MappingCompiler extends ResultConverterCompiler[JdbcResultConverterDomain]

    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
  33. class ModelBuilder extends JdbcModelBuilder

  34. class MutatingResultAction[T] extends SynchronousDatabaseAction[Nothing, Streaming[ResultSetMutator[T]], JdbcDriver.Backend, Effect] with JdbcDriver.DriverAction[Nothing, Streaming[ResultSetMutator[T]], Effect]

    Definition Classes
    JdbcActionComponent
  35. class MySQLResolveZipJoins extends ResolveZipJoins

  36. class PushStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

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

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

    Definition Classes
    JdbcActionComponent
  39. class QueryBuilder extends MySQLDriver.QueryBuilder

  40. trait QueryInvoker[R] extends StatementInvoker[R]

    An Invoker for queries.

    An Invoker for queries.

    Definition Classes
    JdbcInvokerComponent
  41. class QueryInvokerImpl[R] extends StatementInvoker[R] with JdbcDriver.QueryInvoker[R]

    Definition Classes
    JdbcInvokerComponent
  42. class QuotingSymbolNamer extends SymbolNamer

    Definition Classes
    SqlUtilsComponent
  43. trait ReturningInsertActionComposer[U, RU] extends JdbcDriver.InsertActionComposer[U] with JdbcDriver.IntoInsertActionComposer[U, RU]

    An InsertActionComposer that returns generated keys or other columns.

    An InsertActionComposer that returns generated keys or other columns.

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

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  45. final case class RowNum(sym: AnonSymbol, inc: Boolean) extends NullaryNode with SimplyTypedNode with Product with Serializable

  46. final case class RowNumGen(sym: AnonSymbol, init: Long) extends NullaryNode with SimplyTypedNode with Product with Serializable

  47. type SchemaActionExtensionMethods = SchemaActionExtensionMethodsImpl

  48. class SchemaActionExtensionMethodsImpl extends JdbcDriver.SchemaActionExtensionMethodsImpl

    Definition Classes
    JdbcActionComponent
  49. type SchemaDescription = DDL

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    SqlProfileBasicProfile
  50. 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
  51. class Sequence[T] extends AnyRef

    Definition Classes
    RelationalSequenceComponent
  52. class SequenceDDLBuilder[T] extends MySQLDriver.SequenceDDLBuilder

  53. class SetTransactionIsolation extends SynchronousDatabaseAction[Int, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  54. trait SimpleInsertActionComposer[U] extends JdbcDriver.InsertActionExtensionMethodsImpl[U]

    Extension methods to generate the JDBC-specific insert actions.

    Extension methods to generate the JDBC-specific insert actions.

    Definition Classes
    JdbcActionComponent
  55. abstract class SimpleJdbcDriverAction[+R] extends SynchronousDatabaseAction[R, NoStream, JdbcDriver.Backend, Effect] with JdbcDriver.DriverAction[R, NoStream, Effect]

    Definition Classes
    JdbcActionComponent
  56. abstract class StatementPart extends AnyRef

  57. type StreamingDriverAction[+R, +T, -E <: Effect] = FixedSqlStreamingAction[R, T, E]

  58. type StreamingQueryActionExtensionMethods[R, T] = StreamingQueryActionExtensionMethodsImpl[R, T]

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

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

    Definition Classes
    RelationalTableComponent
  61. class TableDDLBuilder extends MySQLDriver.TableDDLBuilder

  62. class TableQueryExtensionMethods[T <: Table[_], U] extends AnyRef

    Definition Classes
    RelationalProfile
  63. type UpdateActionExtensionMethods[T] = UpdateActionExtensionMethodsImpl[T]

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

    Definition Classes
    JdbcActionComponent
  65. class UpdateInsertBuilder extends JdbcDriver.UpsertBuilder

    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
  66. class UpsertBuilder extends MySQLDriver.UpsertBuilder

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 MySQLDriver to any2stringadd[MySQLDriver] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MySQLDriver, B)

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

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

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  7. object DDL

    Definition Classes
    SqlProfile
  8. object FromPart extends JdbcDriver.StatementPart with Product with Serializable

  9. object HavingPart extends JdbcDriver.StatementPart with Product with Serializable

  10. object JdbcType

    Definition Classes
    JdbcTypesComponent
  11. lazy val MappedColumnType: MappedJdbcType.type

    Definition Classes
    JdbcProfileRelationalTypesComponent
  12. object MappedJdbcType extends JdbcDriver.MappedColumnTypeFactory

    Definition Classes
    JdbcTypesComponent
  13. object OtherPart extends JdbcDriver.StatementPart with Product with Serializable

  14. object PopStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

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

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  16. object SelectPart extends JdbcDriver.StatementPart with Product with Serializable

  17. object Sequence

    Definition Classes
    RelationalSequenceComponent
  18. object StartTransaction extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  19. object WherePart extends JdbcDriver.StatementPart with Product with Serializable

  20. val api: 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
  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. val backend: Backend

    The back-end implementation for this profile

    The back-end implementation for this profile

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

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

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

    Definition Classes
    JdbcProfile
  27. def clone(): AnyRef

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

  29. val columnTypes: JdbcTypes

    Definition Classes
    MySQLDriverJdbcProfile
  30. def compileInsert(tree: Node): JdbcCompiledInsert

    (Partially) ompile an AST for insert operations

    (Partially) ompile an AST for insert operations

    Definition Classes
    JdbcProfileBasicProfile
  31. final lazy val compiler: QueryCompiler

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

    Compute the capabilities.

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

    Attributes
    protected
    Definition Classes
    MySQLDriverJdbcProfileSqlProfileRelationalProfileBasicProfile
  33. def computeQueryCompiler: QueryCompiler

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

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

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

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

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

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

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

  39. def createInsertBuilder(node: Insert): InsertBuilder

  40. def createModel(tables: Option[DBIO[Seq[MTable]]] = None, ignoreInvalidDefaults: Boolean = true)(implicit ec: ExecutionContext): DBIO[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
  41. def createModelBuilder(tables: Seq[MTable], ignoreInvalidDefaults: Boolean)(implicit ec: ExecutionContext): JdbcModelBuilder

    Definition Classes
    MySQLDriverJdbcModelComponent
  42. def createOptionResultConverter[T](ti: JdbcType[T], idx: Int): ResultConverter[JdbcResultConverterDomain, Option[T]]

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

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

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

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

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

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

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

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

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

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

  53. def createUpsertBuilder(node: Insert): InsertBuilder

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

    Definition Classes
    MySQLDriverJdbcTypesComponent
  55. lazy val defaultStringType: Option[String]

    Attributes
    protected
  56. def defaultTables(implicit ec: ExecutionContext): DBIO[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
  57. lazy val deleteCompiler: QueryCompiler

    The compiler used for deleting data

    The compiler used for deleting data

    Definition Classes
    JdbcProfileBasicProfile
  58. final lazy val driverConfig: Config

    The configuration for this driver, loaded via loadDriverConfig.

    The configuration for this driver, loaded via loadDriverConfig.

    Definition Classes
    BasicDriver
  59. def ensuring(cond: (MySQLDriver) ⇒ Boolean, msg: ⇒ Any): MySQLDriver

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

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

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

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

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

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

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

    Definition Classes
    JdbcProfile
  67. def formatted(fmtstr: String): String

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

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

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

    The compiler used for inserting data

    The compiler used for inserting data

    Definition Classes
    JdbcProfileBasicProfile
  71. val invokerMutateConcurrency: ResultSetConcurrency

    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  72. val invokerMutateType: ResultSetType

    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  73. val invokerPreviousAfterDelete: Boolean

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

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

    Definition Classes
    JdbcTypesComponent
  76. def likeEncode(s: String): String

    Definition Classes
    SqlUtilsComponent
  77. def loadDriverConfig: Config

    Load the configuration for this driver.

    Load the configuration for this driver. This can be overridden in user-defined driver 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 matching "slick.driver.XXXDriver" where XXX is an arbitrary name, and then returns the path "slick.driver.XXX" from the application config, if it exists, otherwise an empty Config object.

    Attributes
    protected[this]
    Definition Classes
    BasicDriver
  78. val mappingCompiler: MappingCompiler

    The MappingCompiler for this driver.

    The MappingCompiler for this driver.

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

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

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

    Definition Classes
    AnyRef
  82. val profile: JdbcProfile

    The external interface of this driver which defines the API.

    The external interface of this driver which defines the API.

    Definition Classes
    JdbcDriverSqlDriverRelationalDriverBasicDriver
  83. lazy val queryCompiler: QueryCompiler

    The compiler used for queries

    The compiler used for queries

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

    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
    MySQLDriverSqlUtilsComponent
  85. def quoteTableName(t: TableNode): String

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

    Run a query synchronously on the provided session.

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

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

    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
  88. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  89. def toString(): String

    Definition Classes
    BasicDriver → AnyRef → Any
  90. lazy val updateCompiler: QueryCompiler

    The compiler used for updates

    The compiler used for updates

    Definition Classes
    JdbcProfileBasicProfile
  91. lazy val updateInsertCompiler: QueryCompiler

    Definition Classes
    JdbcProfile
  92. lazy val upsertCompiler: QueryCompiler

    Definition Classes
    JdbcProfile
  93. lazy val useServerSideUpsert: Boolean

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  94. lazy val useServerSideUpsertReturning: Boolean

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  95. lazy val useTransactionForUpsert: Boolean

    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  96. lazy val useTransactionForUpsertReturning: Boolean

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

    Create a SQL representation of a literal value.

    Create a SQL representation of a literal value.

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

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

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

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

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

Inherited from JdbcDriver

Inherited from JdbcProfile

Inherited from JdbcModelComponent

Inherited from JdbcTypesComponent

Inherited from JdbcInvokerComponent

Inherited from JdbcActionComponent

Inherited from SqlDriver

Inherited from SqlUtilsComponent

Inherited from SqlProfile

Inherited from SqlActionComponent

Inherited from SqlTableComponent

Inherited from RelationalDriver

Inherited from RelationalProfile

Inherited from RelationalActionComponent

Inherited from RelationalTypesComponent

Inherited from RelationalTableComponent

Inherited from BasicDriver

Inherited from BasicProfile

Inherited from BasicActionComponent

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped