Packages

t

slick.jdbc

JdbcStatementBuilderComponent

trait JdbcStatementBuilderComponent extends AnyRef

Self Type
JdbcProfile
Source
JdbcStatementBuilderComponent.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JdbcStatementBuilderComponent
  2. AnyRef
  3. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. 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.

  2. class ColumnDDLBuilder extends AnyRef

    Builder for column specifications in DDL statements.

  3. class InsertBuilder extends AnyRef

    Builder for INSERT statements.

  4. class JdbcCompiledInsert extends AnyRef
  5. class QueryBuilder extends AnyRef

    Builder for SELECT and UPDATE statements.

  6. class SequenceDDLBuilder extends AnyRef

    Builder for DDL statements for sequences.

  7. abstract class StatementPart extends AnyRef
  8. class TableDDLBuilder extends AnyRef

    Builder for various DDL statements.

  9. 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.

  10. class UpsertBuilder extends JdbcProfile.InsertBuilder

    Builder for upsert statements, builds standard SQL MERGE statements by default.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (JdbcStatementBuilderComponent, B)
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toArrowAssoc[JdbcStatementBuilderComponent] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def createCheckInsertBuilder(node: Insert): JdbcProfile.InsertBuilder
  8. def createColumnDDLBuilder(column: FieldSymbol, table: JdbcProfile.Table[_]): JdbcProfile.ColumnDDLBuilder
  9. def createInsertBuilder(node: Insert): JdbcProfile.InsertBuilder
  10. def createQueryBuilder(n: Node, state: CompilerState): JdbcProfile.QueryBuilder
  11. def createSequenceDDLBuilder(seq: JdbcProfile.Sequence[_]): JdbcProfile.SequenceDDLBuilder
  12. def createTableDDLBuilder(table: JdbcProfile.Table[_]): JdbcProfile.TableDDLBuilder
  13. def createUpdateInsertBuilder(node: Insert): JdbcProfile.InsertBuilder
  14. def createUpsertBuilder(node: Insert): JdbcProfile.InsertBuilder
  15. def ensuring(cond: (JdbcStatementBuilderComponent) => Boolean, msg: => Any): JdbcStatementBuilderComponent
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toEnsuring[JdbcStatementBuilderComponent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (JdbcStatementBuilderComponent) => Boolean): JdbcStatementBuilderComponent
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toEnsuring[JdbcStatementBuilderComponent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): JdbcStatementBuilderComponent
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toEnsuring[JdbcStatementBuilderComponent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): JdbcStatementBuilderComponent
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toEnsuring[JdbcStatementBuilderComponent] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. 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;").

  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def valueToSQLLiteral(v: Any, tpe: Type): String

    Create a SQL representation of a literal value.

  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. case object FromPart extends JdbcProfile.StatementPart with Product with Serializable
  35. case object HavingPart extends JdbcProfile.StatementPart with Product with Serializable
  36. case object OtherPart extends JdbcProfile.StatementPart with Product with Serializable
  37. case object SelectPart extends JdbcProfile.StatementPart with Product with Serializable
  38. case object WherePart extends JdbcProfile.StatementPart with Product with Serializable

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 JdbcStatementBuilderComponent toStringFormat[JdbcStatementBuilderComponent] 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. def [B](y: B): (JdbcStatementBuilderComponent, B)
    Implicit
    This member is added by an implicit conversion from JdbcStatementBuilderComponent toArrowAssoc[JdbcStatementBuilderComponent] 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 AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromJdbcStatementBuilderComponent to StringFormat[JdbcStatementBuilderComponent]

Inherited by implicit conversion Ensuring fromJdbcStatementBuilderComponent to Ensuring[JdbcStatementBuilderComponent]

Inherited by implicit conversion ArrowAssoc fromJdbcStatementBuilderComponent to ArrowAssoc[JdbcStatementBuilderComponent]

Ungrouped