PagingSQLBuilder

scalikejdbc.QueryDSLFeature.PagingSQLBuilder

Attributes

Source
QueryDSLFeature.scala
Graph
Supertypes
trait SQLBuilder[A]
class Object
trait Matchable
class Any
Show all
Known subtypes

Members list

Value members

Concrete methods

override def append(part: SQLSyntax): PagingSQLBuilder[A]

Attributes

Definition Classes
Source
QueryDSLFeature.scala

Attributes

Source
QueryDSLFeature.scala

Attributes

Source
QueryDSLFeature.scala
def limit(n: Int): PagingSQLBuilder[A]

Attributes

Source
QueryDSLFeature.scala
def offset(n: Int): PagingSQLBuilder[A]

Attributes

Source
QueryDSLFeature.scala
def orderBy(columns: SQLSyntax*): PagingSQLBuilder[A]

Attributes

Source
QueryDSLFeature.scala

Inherited methods

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)) }

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)) }

Attributes

Inherited from:
SubQuerySQLBuilder
Source
QueryDSLFeature.scala
def except(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
ExceptQuerySQLBuilder
Source
QueryDSLFeature.scala
def except(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
ExceptQuerySQLBuilder
Source
QueryDSLFeature.scala
def exceptAll(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
ExceptQuerySQLBuilder
Source
QueryDSLFeature.scala
def exceptAll(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
ExceptQuerySQLBuilder
Source
QueryDSLFeature.scala

Attributes

Inherited from:
ForUpdateQuerySQLBuilder
Source
QueryDSLFeature.scala

Attributes

Inherited from:
ForUpdateQuerySQLBuilder
Source
QueryDSLFeature.scala
def intersect(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
IntersectQuerySQLBuilder
Source
QueryDSLFeature.scala
def intersect(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
IntersectQuerySQLBuilder
Source
QueryDSLFeature.scala
def intersectAll(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
IntersectQuerySQLBuilder
Source
QueryDSLFeature.scala
def intersectAll(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
IntersectQuerySQLBuilder
Source
QueryDSLFeature.scala
def sql: SQLSyntax

Attributes

Inherited from:
SQLBuilder
Source
QueryDSLFeature.scala
def toSQL: SQL[A, NoExtractor]

Attributes

Inherited from:
SQLBuilder
Source
QueryDSLFeature.scala

Attributes

Inherited from:
SQLBuilder
Source
QueryDSLFeature.scala
def union(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
UnionQuerySQLBuilder
Source
QueryDSLFeature.scala
def union(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
UnionQuerySQLBuilder
Source
QueryDSLFeature.scala
def unionAll(anotherQuery: SQLBuilder[_]): PagingSQLBuilder[A]

Attributes

Inherited from:
UnionQuerySQLBuilder
Source
QueryDSLFeature.scala
def unionAll(anotherQuery: SQLSyntax): PagingSQLBuilder[A]

Attributes

Inherited from:
UnionQuerySQLBuilder
Source
QueryDSLFeature.scala