trait ScalarQuery[T] extends Query[T] with SingleColumnQuery[T] with SingleRowQuery[T]
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScalarQuery
- SingleRowQuery
- SingleColumnQuery
- Query
- Queryable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def ast: ExpressionNode
- Definition Classes
- Query
- abstract def distinct: Query[T]
- Definition Classes
- Query
- abstract def dumpAst: String
- Definition Classes
- Query
- abstract def except(q: Query[T]): Query[T]
- Definition Classes
- Query
- abstract def exceptAll(q: Query[T]): Query[T]
- Definition Classes
- Query
- abstract def forUpdate: Query[T]
- Definition Classes
- Query
- abstract def intersect(q: Query[T]): Query[T]
- Definition Classes
- Query
- abstract def intersectAll(q: Query[T]): Query[T]
- Definition Classes
- Query
- abstract def invokeYield(rsm: ResultSetMapper, resultSet: ResultSet): T
- abstract def iterator: Iterator[T]
- Definition Classes
- Query
- abstract def name: String
- Definition Classes
- Queryable
- abstract def page(offset: Int, pageLength: Int): Query[T]
- Definition Classes
- Query
- abstract def statement: String
returns a 'pretty' statement, i.e.
returns a 'pretty' statement, i.e. values are printed instead of '?'
- Definition Classes
- Query
- abstract def union(q: Query[T]): Query[T]
- Definition Classes
- Query
- abstract def unionAll(q: Query[T]): Query[T]
- Definition Classes
- Query
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def headOption: Option[T]
- Definition Classes
- Query
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def single: T
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
- def singleOption: Option[T]
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
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def where(whereClauseFunctor: (T) => LogicalBoolean)(implicit dsl: QueryDsl): Query[T]
- Definition Classes
- Queryable