org.squeryl.dsl

AbstractQuery

abstract class AbstractQuery[R] extends Query[R]

Linear Supertypes
Query[R], Queryable[R], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AbstractQuery
  2. Query
  3. Queryable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractQuery(isRoot: Boolean)

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): AbstractQuery[R]

  3. abstract def invokeYield(rsm: ResultSetMapper, resultSet: ResultSet): R

    Attributes
    protected[org.squeryl]
    Definition Classes
    Query

Concrete 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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def buildAst(qy: QueryYield[R], subQueryables: SubQueryable[_]*): QueryExpressionNode[R]

    Attributes
    protected
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def copy(asRoot: Boolean): AbstractQuery[R]

    Definition Classes
    AbstractQueryQuery
  10. def createSubQueryable[U](q: Queryable[U]): SubQueryable[U]

    Attributes
    protected
  11. 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

  12. def distinct: AbstractQuery[R]

    Definition Classes
    AbstractQueryQuery
  13. def dumpAst: String

    Definition Classes
    AbstractQueryQuery
  14. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. def forUpdate: AbstractQuery[R]

    Definition Classes
    AbstractQueryQuery
  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def give(rsm: ResultSetMapper, rs: ResultSet): R

    Definition Classes
    AbstractQueryQueryable
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def headOption: Option[R]

    Definition Classes
    Query
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. val isRoot: Boolean

  24. def iterator: Iterator[R] with Closeable

    Definition Classes
    AbstractQueryQuery
  25. def minus(q: Query[R]): Query[R]

    Definition Classes
    Query
  26. val name: String

    Definition Classes
    AbstractQueryQueryable
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  30. def page(offset: Int, pageLength: Int): Query[R]

    Definition Classes
    AbstractQueryQuery
  31. val resultSetMapper: ResultSetMapper

  32. 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
  33. 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
  34. def statement: String

    returns a 'pretty' statement, i.

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

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

    Definition Classes
    AnyRef
  36. def toString(): String

    Definition Classes
    AbstractQuery → AnyRef → Any
  37. def union(q: Query[R]): Query[R]

    Definition Classes
    Query
  38. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  41. 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