scalikejdbc.QueryDSLFeature

SelectSQLBuilder

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

SQLBuilder for select queries.

Linear Supertypes
Serializable, Serializable, Product, Equals, (QueryDSLFeature.this)#WhereSQLBuilder[A], (QueryDSLFeature.this)#GroupBySQLBuilder[A], (QueryDSLFeature.this)#PagingSQLBuilder[A], (QueryDSLFeature.this)#SubQuerySQLBuilder[A], (QueryDSLFeature.this)#UnionQuerySQLBuilder[A], (QueryDSLFeature.this)#SQLBuilder[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SelectSQLBuilder
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. WhereSQLBuilder
  7. GroupBySQLBuilder
  8. PagingSQLBuilder
  9. SubQuerySQLBuilder
  10. UnionQuerySQLBuilder
  11. SQLBuilder
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SelectSQLBuilder(sql: (QueryDSLFeature.this)#SQLSyntax, lazyColumns: Boolean = false, resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider] = immutable.this.Nil)

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. def append(part: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  7. def as(sq: (QueryDSLFeature.this)#SubQuerySQLSyntaxProvider): (QueryDSLFeature.this)#TableAsAliasSQLSyntax

    Converts SQLBuilder to sub-query part sqls.

    Converts SQLBuilder to sub-query part sqls. e.g. val x = SubQuery.syntax("x").include(u, g) withSQL { select.from(select.from(User as u).leftJoin(Group as g).on(u.groupId, g.id).where.eq(u.groupId, 234).as(x)) }

    Definition Classes
    SubQuerySQLBuilder
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def asc: (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    PagingSQLBuilder
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def desc: (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    PagingSQLBuilder
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. def from(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def groupBy(columns: (QueryDSLFeature.this)#SQLSyntax*): (QueryDSLFeature.this)#GroupBySQLBuilder[A]

    Definition Classes
    GroupBySQLBuilder
  17. def having(condition: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#GroupBySQLBuilder[A]

    Definition Classes
    GroupBySQLBuilder
  18. def innerJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def join(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  21. val lazyColumns: Boolean

  22. def leftJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  23. def limit(n: Int): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    PagingSQLBuilder
  24. def map(mapper: ((QueryDSLFeature.this)#SelectSQLBuilder[A]) ⇒ (QueryDSLFeature.this)#SelectSQLBuilder[A]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  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. def offset(n: Int): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    PagingSQLBuilder
  29. def on(left: (QueryDSLFeature.this)#SQLSyntax, right: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  30. def on(onClause: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  31. def orderBy(columns: (QueryDSLFeature.this)#SQLSyntax*): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    PagingSQLBuilder
  32. val resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider]

  33. def rightJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  34. val sql: (QueryDSLFeature.this)#SQLSyntax

    Definition Classes
    SelectSQLBuilderSQLBuilder
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toSQL: SQL[A, NoExtractor]

    Definition Classes
    SelectSQLBuilderSQLBuilder
  37. def toSQLSyntax: (QueryDSLFeature.this)#SQLSyntax

    Definition Classes
    SelectSQLBuilderSQLBuilder
  38. def union(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    UnionQuerySQLBuilder
  39. def union(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    UnionQuerySQLBuilder
  40. def unionAll(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    UnionQuerySQLBuilder
  41. def unionAll(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

    Definition Classes
    UnionQuerySQLBuilder
  42. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  45. def where(where: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#ConditionSQLBuilder[A]

    Definition Classes
    SelectSQLBuilderWhereSQLBuilder
  46. def where: (QueryDSLFeature.this)#ConditionSQLBuilder[A]

    Definition Classes
    SelectSQLBuilderWhereSQLBuilder

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from (QueryDSLFeature.this)#WhereSQLBuilder[A]

Inherited from (QueryDSLFeature.this)#GroupBySQLBuilder[A]

Inherited from (QueryDSLFeature.this)#PagingSQLBuilder[A]

Inherited from (QueryDSLFeature.this)#SubQuerySQLBuilder[A]

Inherited from (QueryDSLFeature.this)#UnionQuerySQLBuilder[A]

Inherited from (QueryDSLFeature.this)#SQLBuilder[A]

Inherited from AnyRef

Inherited from Any

Ungrouped