c

org.squeryl.dsl

AbstractQuery

abstract class AbstractQuery[R] extends Query[R]

Source
AbstractQuery.scala
Linear Supertypes
Query[R], Queryable[R], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractQuery
  2. Query
  3. Queryable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AbstractQuery(isRoot: Boolean, unions: List[(String, Query[R])])

Type Members

  1. class SubQueryable[U] extends AnyRef
    Attributes
    protected

Abstract Value Members

  1. abstract def ast: QueryExpressionNode[R]
    Definition Classes
    AbstractQueryQuery
  2. abstract def createCopy(asRoot: Boolean, newUnions: List[(String, Query[R])]): AbstractQuery[R]
  3. abstract def invokeYield(rsm: ResultSetMapper, resultSet: ResultSet): R
    Attributes
    protected[squeryl]
    Definition Classes
    Query

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def buildAst(qy: QueryYield[R], subQueryables: SubQueryable[_]*): QueryExpressionNode[R]
    Attributes
    protected
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def copy(asRoot: Boolean, newUnions: List[(String, Query[R])]): AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  8. def copyUnions(u: List[(String, Query[R])]): List[(String, Query[R])]
    Attributes
    protected
  9. def createSubQueryable[U](q: Queryable[U]): SubQueryable[U]
    Attributes
    protected
  10. val definitionSite: Option[StackTraceElement]

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    After this call, the query (and it's AST) becomes immutable by virtue of the unaccessibility of it's public methods

  11. def distinct: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  12. def dumpAst: String
    Definition Classes
    AbstractQueryQuery
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def except(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  16. def exceptAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def forUpdate: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def give(rsm: ResultSetMapper, rs: ResultSet): R
    Definition Classes
    AbstractQueryQueryable
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def headOption: Option[R]
    Definition Classes
    Query
  23. def intersect(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  24. def intersectAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. val isRoot: Boolean
  27. def iterator: Iterator[R] with Closeable
    Definition Classes
    AbstractQueryQuery
  28. val name: String
    Definition Classes
    AbstractQueryQueryable
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def page(offset: Int, pageLength: Int): Query[R]
    Definition Classes
    AbstractQueryQuery
  33. val resultSetMapper: ResultSetMapper
  34. def single: R

    Returns the first row of the query.

    Returns the first row of the query. An exception will be thrown if the query returns no row or more than one row.

    Definition Classes
    Query
  35. def singleOption: Option[R]

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Definition Classes
    Query
  36. def statement: String

    returns a 'pretty' statement, i.e.

    returns a 'pretty' statement, i.e. values are printed instead of '?'

    Definition Classes
    AbstractQueryQuery
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AbstractQuery → AnyRef → Any
  39. def union(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  40. def unionAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  44. def where(whereClauseFunctor: (R) => LogicalBoolean)(implicit dsl: QueryDsl): Query[R]
    Definition Classes
    Queryable

Inherited from Query[R]

Inherited from Queryable[R]

Inherited from AnyRef

Inherited from Any

Ungrouped