Packages

trait SQLServerProfile extends JdbcProfile with MultipleRowsPerStatementSupport

Slick profile for Microsoft SQL Server.

This profile implements slick.jdbc.JdbcProfile without the following capabilities:

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

Source
SQLServerProfile.scala
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SQLServerProfile
  2. MultipleRowsPerStatementSupport
  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
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

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

    An InsertInvoker that returns the number of affected rows.

    An InsertInvoker that returns the number of affected rows.

    Definition Classes
    JdbcActionComponent
  3. class CountingInsertActionComposerImpl[U] extends JdbcProfile.InsertActionComposerImpl[U] with JdbcProfile.CountingInsertActionComposer[U]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  4. class DeleteActionExtensionMethodsImpl extends AnyRef
    Definition Classes
    JdbcActionComponent
  5. trait InsertActionComposer[U] extends JdbcProfile.SimpleInsertActionComposer[U]

    Extension methods to generate the JDBC-specific insert actions.

    Extension methods to generate the JDBC-specific insert actions.

    Definition Classes
    JdbcActionComponent
  6. abstract class InsertActionComposerImpl[U] extends JdbcProfile.InsertActionComposer[U]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  7. trait IntoInsertActionComposer[U, RU] extends JdbcProfile.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
  8. class JdbcActionExtensionMethods[E <: Effect, R, S <: NoStream] extends AnyRef
    Definition Classes
    JdbcActionComponent
  9. class MutatingResultAction[T] extends SynchronousDatabaseAction[Nothing, Streaming[ResultSetMutator[T]], Backend, Effect] with JdbcProfile.ProfileAction[Nothing, Streaming[ResultSetMutator[T]], Effect]
    Definition Classes
    JdbcActionComponent
  10. class PushStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  11. class QueryActionExtensionMethodsImpl[R, S <: NoStream] extends JdbcProfile.QueryActionExtensionMethodsImpl[R, S]
    Definition Classes
    JdbcActionComponent
  12. trait ReturningInsertActionComposer[U, RU] extends JdbcProfile.InsertActionComposer[U] with JdbcProfile.IntoInsertActionComposer[U, RU]

    An InsertActionComposer that returns generated keys or other columns.

    An InsertActionComposer that returns generated keys or other columns.

    Definition Classes
    JdbcActionComponent
  13. class ReturningInsertActionComposerImpl[U, QR, RU] extends JdbcProfile.InsertActionComposerImpl[U] with JdbcProfile.ReturningInsertActionComposer[U, RU]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  14. class SchemaActionExtensionMethodsImpl extends JdbcProfile.SchemaActionExtensionMethodsImpl
    Definition Classes
    JdbcActionComponent
  15. class SetTransactionIsolation extends SynchronousDatabaseAction[Int, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  16. trait SimpleInsertActionComposer[U] extends JdbcProfile.InsertActionExtensionMethodsImpl[U]

    Extension methods to generate the JDBC-specific insert actions.

    Extension methods to generate the JDBC-specific insert actions.

    Definition Classes
    JdbcActionComponent
  17. abstract class SimpleJdbcProfileAction[+R] extends SynchronousDatabaseAction[R, NoStream, Backend, Effect] with JdbcProfile.ProfileAction[R, NoStream, Effect]
    Definition Classes
    JdbcActionComponent
  18. class StreamingQueryActionExtensionMethodsImpl[R, T] extends JdbcProfile.QueryActionExtensionMethodsImpl[R, Streaming[T]] with JdbcProfile.StreamingQueryActionExtensionMethodsImpl[R, T]
    Definition Classes
    JdbcActionComponent
  19. class UpdateActionExtensionMethodsImpl[T] extends AnyRef
    Definition Classes
    JdbcActionComponent
  20. trait QueryInvoker[R] extends StatementInvoker[R]

    An Invoker for queries.

    An Invoker for queries.

    Definition Classes
    JdbcInvokerComponent
  21. class QueryInvokerImpl[R] extends StatementInvoker[R] with JdbcProfile.QueryInvoker[R]
    Definition Classes
    JdbcInvokerComponent
  22. class JdbcCodeGen extends CodeGen

    Code generator phase for queries on JdbcProfile.

    Code generator phase for queries on JdbcProfile.

    Definition Classes
    JdbcMappingCompilerComponent
  23. class JdbcInsertCodeGen extends CodeGen

    Code generator phase for inserts on JdbcProfile.

    Code generator phase for inserts on JdbcProfile.

    Definition Classes
    JdbcMappingCompilerComponent
  24. 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
  25. trait API extends LowPriorityAPI with JdbcProfile.API with ImplicitColumnTypes
    Definition Classes
    JdbcProfile
  26. trait LowPriorityAPI extends AnyRef
    Definition Classes
    JdbcProfile
  27. class CheckInsertBuilder extends JdbcProfile.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
  28. class JdbcCompiledInsert extends AnyRef
  29. class SequenceDDLBuilder extends AnyRef

    Builder for DDL statements for sequences.

    Builder for DDL statements for sequences.

    Definition Classes
    JdbcStatementBuilderComponent
  30. abstract class StatementPart extends AnyRef
  31. class UpdateInsertBuilder extends JdbcProfile.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
  32. abstract class DriverJdbcType[T] extends JdbcType[T]
    Definition Classes
    JdbcTypesComponent
  33. trait ImplicitColumnTypes extends JdbcProfile.ImplicitColumnTypes
    Definition Classes
    JdbcTypesComponent
  34. abstract class MappedJdbcType[T, U] extends JdbcType[T]
    Definition Classes
    JdbcTypesComponent
  35. type Backend = JdbcBackend

    The back-end type required by this profile

    The back-end type required by this profile

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  36. type BaseColumnType[T] = JdbcType[T] with BaseTypedType[T]
  37. class ColumnDDLBuilder extends SQLServerProfile.ColumnDDLBuilder
  38. type ColumnType[T] = JdbcType[T]
  39. 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
  40. type DeleteActionExtensionMethods = DeleteActionExtensionMethodsImpl
    Definition Classes
    JdbcActionComponent
  41. type InsertActionExtensionMethods[T] = CountingInsertActionComposer[T]
  42. class InsertBuilder extends SQLServerProfile.InsertBuilder
  43. class JdbcTypes extends SQLServerProfile.JdbcTypes
  44. class ModelBuilder extends JdbcModelBuilder
  45. type ProfileAction[+R, +S <: NoStream, -E <: Effect] = FixedSqlAction[R, S, E]
  46. type QueryActionExtensionMethods[R, S <: NoStream] = QueryActionExtensionMethodsImpl[R, S]
  47. class QueryBuilder extends SQLServerProfile.QueryBuilder
  48. type RowsPerStatement = jdbc.RowsPerStatement
  49. type SchemaActionExtensionMethods = SchemaActionExtensionMethodsImpl
  50. type SchemaDescription = DDL

    The type of a schema description (DDL)

    The type of a schema description (DDL)

    Definition Classes
    SqlProfileBasicProfile
  51. type StreamingProfileAction[+R, +T, -E <: Effect] = FixedSqlStreamingAction[R, T, E]
  52. type StreamingQueryActionExtensionMethods[R, T] = StreamingQueryActionExtensionMethodsImpl[R, T]
  53. class TableDDLBuilder extends SQLServerProfile.TableDDLBuilder
  54. type UpdateActionExtensionMethods[T] = UpdateActionExtensionMethodsImpl[T]
    Definition Classes
    JdbcActionComponent
  55. class UpsertBuilder extends SQLServerProfile.UpsertBuilder
  56. trait InsertActionExtensionMethodsImpl[T] extends AnyRef
    Definition Classes
    RelationalActionComponent
  57. class FastPathExtensionMethods[M <: ResultConverterDomain, T, P] extends AnyRef
    Definition Classes
    RelationalProfile
  58. class TableQueryExtensionMethods[T <: Table[_], U] extends AnyRef
    Definition Classes
    RelationalProfile
  59. class Sequence[T] extends AnyRef
    Definition Classes
    RelationalSequenceComponent
  60. abstract class Table[T] extends AbstractTable[T]
    Definition Classes
    RelationalTableComponent
  61. trait MappedColumnTypeFactory extends AnyRef
    Definition Classes
    RelationalTypesComponent
  62. trait DDL extends SchemaDescriptionDef
    Definition Classes
    SqlProfile
  63. trait ColumnOptions extends SqlProfile.ColumnOptions
    Definition Classes
    SqlTableComponent
  64. class QuotingSymbolNamer extends SymbolNamer
    Definition Classes
    SqlUtilsComponent

Deprecated Type Members

  1. final type DriverAction[+R, +S <: NoStream, -E <: Effect] = ProfileAction[R, S, E]
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use ProfileAction instead of DriverAction

  2. final type StreamingDriverAction[+R, +T, -E <: Effect] = StreamingProfileAction[R, T, E]
    Definition Classes
    BasicActionComponent
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use StreamingProfileAction instead of StreamingDriverAction

Value Members

  1. object Commit extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  2. object PopStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  3. object Rollback extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  4. object StartTransaction extends SynchronousDatabaseAction[Unit, NoStream, Backend, Effect]
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  5. case object FromPart extends JdbcProfile.StatementPart with Product with Serializable
  6. case object HavingPart extends JdbcProfile.StatementPart with Product with Serializable
  7. case object OtherPart extends JdbcProfile.StatementPart with Product with Serializable
  8. case object SelectPart extends JdbcProfile.StatementPart with Product with Serializable
  9. case object WherePart extends JdbcProfile.StatementPart with Product with Serializable
  10. object JdbcType
    Definition Classes
    JdbcTypesComponent
  11. object MappedJdbcType extends JdbcProfile.MappedColumnTypeFactory
    Definition Classes
    JdbcTypesComponent
  12. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. final def ##: Int
    Definition Classes
    AnyRef → Any
  14. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toany2stringadd[SQLServerProfile] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  15. def ->[B](y: B): (SQLServerProfile, B)
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toArrowAssoc[SQLServerProfile] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  16. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. lazy val MappedColumnType: MappedJdbcType.type
  18. 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 profile's implicits, the Database API and commonly used query language types and objects.

    Definition Classes
    JdbcProfileRelationalProfileBasicProfile
  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. val backend: Backend

    The back-end implementation for this profile

    The back-end implementation for this profile

    Definition Classes
    JdbcProfileBasicProfile
  21. final def buildSequenceSchemaDescription(seq: Sequence[_]): DDL
  22. final def buildTableSchemaDescription(table: Table[_]): DDL
  23. final val capabilities: Set[Capability]

    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
    Definition Classes
    JdbcProfile
  25. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  26. val columnOptions: ColumnOptions
  27. val columnTypes: JdbcTypes
    Definition Classes
    SQLServerProfileJdbcProfile
  28. def compileInsert(tree: Node): JdbcCompiledInsert

    (Partially) compile an AST for insert operations

    (Partially) compile an AST for insert operations

    Definition Classes
    JdbcProfileBasicProfile
  29. final lazy val compiler: QueryCompiler
    Definition Classes
    RelationalProfile
  30. def computeCapabilities: Set[Capability]

    Compute the capabilities.

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

    Attributes
    protected
    Definition Classes
    SQLServerProfileJdbcProfileSqlProfileRelationalProfileBasicProfile
  31. def computeQueryCompiler: QueryCompiler
    Attributes
    protected
    Definition Classes
    SQLServerProfileSqlProfileRelationalProfile
  32. 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
  33. def createCheckInsertBuilder(node: Insert): SQLServerProfile.InsertBuilder
  34. def createColumnDDLBuilder(column: FieldSymbol, table: Table[_]): ColumnDDLBuilder
  35. def createDeleteActionExtensionMethods(tree: Node, param: Any): DeleteActionExtensionMethods
    Definition Classes
    JdbcActionComponent
  36. def createInsertActionExtensionMethods[T](compiled: CompiledInsert): InsertActionExtensionMethods[T]
  37. def createInsertBuilder(node: Insert): SQLServerProfile.InsertBuilder
  38. 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
  39. def createModelBuilder(tables: Seq[MTable], ignoreInvalidDefaults: Boolean)(implicit ec: ExecutionContext): JdbcModelBuilder
    Definition Classes
    SQLServerProfileJdbcModelComponent
  40. 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
  41. def createQueryActionExtensionMethods[R, S <: NoStream](tree: Node, param: Any): QueryActionExtensionMethods[R, S]
  42. def createQueryBuilder(n: Node, state: CompilerState): QueryBuilder
  43. def createQueryInvoker[R](tree: Node, param: Any, sql: String): QueryInvokerImpl[R]
    Definition Classes
    JdbcInvokerComponent
  44. def createReturningInsertActionComposer[U, QR, RU](compiled: CompiledInsert, keys: Node, mux: (U, QR) => RU): ReturningInsertActionComposer[U, RU]
    Definition Classes
    JdbcActionComponent
  45. def createSchemaActionExtensionMethods(schema: SchemaDescription): SchemaActionExtensionMethods
  46. def createSequenceDDLBuilder(seq: Sequence[_]): SequenceDDLBuilder
  47. def createStreamingQueryActionExtensionMethods[R, T](tree: Node, param: Any): StreamingQueryActionExtensionMethods[R, T]
  48. def createTableDDLBuilder(table: Table[_]): TableDDLBuilder
  49. def createUpdateActionExtensionMethods[T](tree: Node, param: Any): UpdateActionExtensionMethods[T]
    Definition Classes
    JdbcActionComponent
  50. def createUpdateInsertBuilder(node: Insert): SQLServerProfile.InsertBuilder
  51. def createUpsertBuilder(node: Insert): SQLServerProfile.InsertBuilder
  52. def defaultRowsPerStatement: All
  53. def defaultSqlTypeName(tmd: JdbcType[_], sym: Option[FieldSymbol]): String
    Definition Classes
    SQLServerProfileJdbcTypesComponent
  54. lazy val defaultStringType: Option[String]
    Attributes
    protected
  55. 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
    SQLServerProfileJdbcModelComponent
  56. lazy val deleteCompiler: QueryCompiler

    The compiler used for deleting data

    The compiler used for deleting data

    Definition Classes
    JdbcProfileBasicProfile
  57. def ensuring(cond: (SQLServerProfile) => Boolean, msg: => Any): SQLServerProfile
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toEnsuring[SQLServerProfile] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  58. def ensuring(cond: (SQLServerProfile) => Boolean): SQLServerProfile
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toEnsuring[SQLServerProfile] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  59. def ensuring(cond: Boolean, msg: => Any): SQLServerProfile
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toEnsuring[SQLServerProfile] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  60. def ensuring(cond: Boolean): SQLServerProfile
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toEnsuring[SQLServerProfile] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  61. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  62. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  63. lazy val forceInsertCompiler: QueryCompiler
    Definition Classes
    JdbcProfile
  64. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  65. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  66. lazy val insertCompiler: QueryCompiler

    The compiler used for inserting data

    The compiler used for inserting data

    Definition Classes
    JdbcProfileBasicProfile
  67. val invokerMutateConcurrency: ResultSetConcurrency
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  68. val invokerMutateType: ResultSetType
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  69. val invokerPreviousAfterDelete: Boolean
    Attributes
    protected
    Definition Classes
    JdbcInvokerComponent
  70. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  71. def jdbcTypeFor(t: Type): JdbcType[Any]
    Definition Classes
    JdbcTypesComponent
  72. def likeEncode(s: String): String
    Definition Classes
    SqlUtilsComponent
  73. def loadProfileConfig: Config

    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
    SQLServerProfileBasicProfile
  74. val mappingCompiler: MappingCompiler

    The MappingCompiler for this profile.

    The MappingCompiler for this profile.

    Definition Classes
    JdbcMappingCompilerComponent
  75. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  76. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  77. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  78. final lazy val profileConfig: Config

    The configuration for this profile, loaded via loadProfileConfig.

    The configuration for this profile, loaded via loadProfileConfig.

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

    The compiler used for queries

    The compiler used for queries

    Definition Classes
    JdbcProfileBasicProfile
  80. 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
    SqlUtilsComponent
  81. def quoteTableName(t: TableNode): String
    Definition Classes
    SqlUtilsComponent
  82. 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 DistributedProfile until we can make it fully asynchronous.

    Definition Classes
    JdbcProfileRelationalProfile
  83. 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
  84. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  85. def toString(): String
    Definition Classes
    BasicProfile → AnyRef → Any
  86. lazy val updateCompiler: QueryCompiler

    The compiler used for updates

    The compiler used for updates

    Definition Classes
    JdbcProfileBasicProfile
  87. lazy val updateInsertCompiler: QueryCompiler
    Definition Classes
    JdbcProfile
  88. lazy val upsertCompiler: QueryCompiler
    Definition Classes
    JdbcProfile
  89. lazy val useServerSideUpsert: Boolean
    Attributes
    protected
    Definition Classes
    SQLServerProfileJdbcActionComponent
  90. lazy val useServerSideUpsertReturning: Boolean
    Attributes
    protected
    Definition Classes
    SQLServerProfileJdbcActionComponent
  91. lazy val useTransactionForUpsert: Boolean
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  92. lazy val useTransactionForUpsertReturning: Boolean
    Attributes
    protected
    Definition Classes
    JdbcActionComponent
  93. 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
  94. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  95. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  96. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  97. object Sequence
    Definition Classes
    RelationalSequenceComponent
  98. object DDL
    Definition Classes
    SqlProfile

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toStringFormat[SQLServerProfile] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. val profile: JdbcProfile

    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

  4. def [B](y: B): (SQLServerProfile, B)
    Implicit
    This member is added by an implicit conversion from SQLServerProfile toArrowAssoc[SQLServerProfile] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

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 BasicProfile

Inherited from BasicActionComponent

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromSQLServerProfile to any2stringadd[SQLServerProfile]

Inherited by implicit conversion StringFormat fromSQLServerProfile to StringFormat[SQLServerProfile]

Inherited by implicit conversion Ensuring fromSQLServerProfile to Ensuring[SQLServerProfile]

Inherited by implicit conversion ArrowAssoc fromSQLServerProfile to ArrowAssoc[SQLServerProfile]

Ungrouped