class CountSubQueryableQuery extends Query[Long] with ScalarQuery[Long]
- Source
- QueryDsl.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CountSubQueryableQuery
- ScalarQuery
- SingleRowQuery
- SingleColumnQuery
- Query
- Queryable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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
- def Count: ScalarQuery[Long]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def ast: ExpressionNode
- Definition Classes
- CountSubQueryableQuery → Query
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def distinct: CountSubQueryableQuery
- Definition Classes
- CountSubQueryableQuery → Query
- def dumpAst: String
- Definition Classes
- CountSubQueryableQuery → Query
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def except(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def exceptAll(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def forUpdate: ScalarQuery[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def headOption: Option[Long]
- Definition Classes
- Query
- def intersect(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def intersectAll(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def invokeYield(rsm: ResultSetMapper, rs: ResultSet): Long
- Attributes
- protected[squeryl]
- Definition Classes
- CountSubQueryableQuery → Query
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator: Iterator[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def name: String
- Definition Classes
- CountSubQueryableQuery → Queryable
- 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 page(offset: Int, length: Int): CountSubQueryableQuery
- Definition Classes
- CountSubQueryableQuery → Query
- def single: Long
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[Long]
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
- def statement: String
returns a 'pretty' statement, i.e.
returns a 'pretty' statement, i.e. values are printed instead of '?'
- Definition Classes
- CountSubQueryableQuery → Query
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def union(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- def unionAll(q0: Query[Long]): Query[Long]
- Definition Classes
- CountSubQueryableQuery → Query
- 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: (Long) => LogicalBoolean)(implicit dsl: QueryDsl): Query[Long]
- Definition Classes
- Queryable