scalikejdbc

SQLInterpolation

object SQLInterpolation

SQLInterpolation imports.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SQLInterpolation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type AsteriskProvider = interpolation.AsteriskProvider

  2. case class BasicResultNameSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](support: S, tableAliasName: String) extends SQLSyntaxProviderCommonImpl[S, A] with ResultNameSQLSyntaxProvider[S, A] with Product with Serializable

    Basic Query SQLSyntax Provider for result names.

  3. type ColumnName[A] = ColumnSQLSyntaxProvider[SQLSyntaxSupport[A], A]

  4. case class ColumnSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](support: S) extends SQLSyntaxProvider[A] with AsteriskProvider with Product with Serializable

    SQLSyntax provider for column names.

  5. trait ConditionSQLBuilder[A] extends SQLBuilder[A] with PagingSQLBuilder[A] with GroupBySQLBuilder[A] with UnionQuerySQLBuilder[A] with SubQuerySQLBuilder[A]

  6. case class DeleteSQLBuilder(sql: SQLSyntax) extends SQLBuilder[UpdateOperation] with WhereSQLBuilder[UpdateOperation] with Product with Serializable

    SQLBuilder for delete queries.

  7. trait GroupBySQLBuilder[A] extends SQLBuilder[A] with PagingSQLBuilder[A]

  8. case class InsertSQLBuilder(sql: SQLSyntax) extends SQLBuilder[UpdateOperation] with Product with Serializable

    SQLBuilder for insert queries.

  9. trait PagingSQLBuilder[A] extends SQLBuilder[A] with UnionQuerySQLBuilder[A] with SubQuerySQLBuilder[A]

  10. case class PartialResultSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](support: S, aliasName: String, syntax: SQLSyntax) extends SQLSyntaxProviderCommonImpl[S, A] with Product with Serializable

  11. case class PartialSubQueryResultNameSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](aliasName: String, delimiterForResultName: String, underlying: BasicResultNameSQLSyntaxProvider[S, A]) extends SQLSyntaxProviderCommonImpl[S, A] with ResultNameSQLSyntaxProvider[S, A] with Product with Serializable

  12. case class PartialSubQueryResultSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](aliasName: String, delimiterForResultName: String, underlying: BasicResultNameSQLSyntaxProvider[S, A]) extends SQLSyntaxProviderCommonImpl[S, A] with Product with Serializable

  13. case class PartialSubQuerySQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](aliasName: String, delimiterForResultName: String, underlying: BasicResultNameSQLSyntaxProvider[S, A]) extends SQLSyntaxProviderCommonImpl[S, A] with AsteriskProvider with Product with Serializable

  14. case class QuerySQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](support: S, tableAliasName: String) extends SQLSyntaxProviderCommonImpl[S, A] with ResultAllProvider with AsteriskProvider with Product with Serializable

    SQLSyntax provider for query parts.

  15. type ResultAllProvider = interpolation.ResultAllProvider

  16. type ResultName[A] = ResultNameSQLSyntaxProvider[SQLSyntaxSupport[A], A]

  17. trait ResultNameSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A] extends SQLSyntaxProvider[A]

    SQLSyntax provider for result names.

  18. case class ResultSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A](support: S, tableAliasName: String) extends SQLSyntaxProviderCommonImpl[S, A] with Product with Serializable

    SQLSyntax provider for result parts.

  19. trait SQLBuilder[A] extends AnyRef

    SQLBuilder

  20. type SQLSyntax = interpolation.SQLSyntax

  21. trait SQLSyntaxProvider[A] extends Dynamic

    SQLSyntax Provider

  22. trait SQLSyntaxSupport[A] extends AnyRef

    SQLSyntaxSupport trait.

  23. case class SelectSQLBuilder[A](sql: SQLSyntax, lazyColumns: Boolean = false, resultAllProviders: List[ResultAllProvider] = immutable.this.Nil) extends SQLBuilder[A] with PagingSQLBuilder[A] with GroupBySQLBuilder[A] with UnionQuerySQLBuilder[A] with WhereSQLBuilder[A] with SubQuerySQLBuilder[A] with Product with Serializable

    SQLBuilder for select queries.

  24. type SubQueryResultName = SubQueryResultNameSQLSyntaxProvider

  25. case class SubQueryResultNameSQLSyntaxProvider(aliasName: String, delimiterForResultName: String, resultNames: Seq[BasicResultNameSQLSyntaxProvider[_, _]]) extends Product with Serializable

  26. case class SubQueryResultSQLSyntaxProvider(aliasName: String, delimiterForResultName: String, resultNames: Seq[BasicResultNameSQLSyntaxProvider[_, _]]) extends Product with Serializable

  27. trait SubQuerySQLBuilder[A] extends SQLBuilder[A]

  28. case class SubQuerySQLSyntaxProvider(aliasName: String, delimiterForResultName: String, resultNames: Seq[BasicResultNameSQLSyntaxProvider[_, _]]) extends interpolation.ResultAllProvider with AsteriskProvider with Product with Serializable

  29. type SubQuerySyntaxProvider = SubQuerySQLSyntaxProvider

  30. type SyntaxProvider[A] = QuerySQLSyntaxProvider[SQLSyntaxSupport[A], A]

  31. case class TableAsAliasSQLSyntax extends interpolation.SQLSyntax with Product with Serializable

    Table definition (which has alias name) part SQLSyntax

  32. case class TableDefSQLSyntax extends interpolation.SQLSyntax with Product with Serializable

    Table definition part SQLSyntax

  33. trait UnionQuerySQLBuilder[A] extends SQLBuilder[A]

  34. trait UpdateOperation extends AnyRef

    Represents UpdateOperation (used as SQLBuilder[UpdateOperation]).

  35. case class UpdateSQLBuilder(sql: SQLSyntax) extends SQLBuilder[UpdateOperation] with WhereSQLBuilder[UpdateOperation] with Product with Serializable

    SQLBuilder for update queries.

  36. trait WhereSQLBuilder[A] extends SQLBuilder[A]

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. object QueryDSL

    Prefix object for name confiliction.

  7. val SQLSyntax: interpolation.SQLSyntax.type

  8. object SubQuery

  9. object TableAsAliasSQLSyntax extends Serializable

  10. object applyExecute

    withSQL and execute.

  11. object applyUpdate

    withSQL and update.

  12. object applyUpdateAndReturnGeneratedKey

    withSQL and updateAndReturnGeneratedKey.

  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. val delete: SQLInterpolation.QueryDSL.delete.type

  16. val deleteFrom: SQLInterpolation.QueryDSL.deleteFrom.type

  17. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  22. val insert: SQLInterpolation.QueryDSL.insert.type

  23. val insertInto: SQLInterpolation.QueryDSL.insertInto.type

  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  28. implicit def scalikejdbcSQLInterpolationImplicitDef(s: StringContext): SQLInterpolationString

    Annotations
    @inline()
  29. implicit def scalikejdbcSQLSyntaxToStringImplicitDef(syntax: interpolation.SQLSyntax): String

    Annotations
    @inline()
  30. val select: SQLInterpolation.QueryDSL.select.type

  31. val selectFrom: SQLInterpolation.QueryDSL.selectFrom.type

  32. val sqls: interpolation.SQLSyntax.type

  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    AnyRef → Any
  35. val update: SQLInterpolation.QueryDSL.update.type

  36. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  39. object withSQL

    withSQL clause which returns SQL[A, NoExtractor] from SQLBuilder.

Inherited from AnyRef

Inherited from Any

Ungrouped