case object EmptySqlQuery extends SqlQuery with Product with Serializable
- Source
- SqlMapping.scala
- Alphabetic
- By Inheritance
- EmptySqlQuery
- SqlQuery
- ColumnOwner
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- 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 addFilterOrderByOffsetLimit(filter: Option[(Predicate, List[SqlJoin])], orderBy: Option[(List[OrderSelection[_]], List[SqlJoin])], offset: Option[Int], limit: Option[Int], predIsOneToOne: Boolean, parentConstraints: List[List[(SqlColumn, SqlColumn)]]): Result[SqlQuery]
Add WHERE, ORDER BY, OFFSET and LIMIT to this query
Add WHERE, ORDER BY, OFFSET and LIMIT to this query
- Definition Classes
- EmptySqlQuery → SqlQuery
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asSelects: List[SqlSelect]
Yields a collection of
SqlSelects
which when combined as a union are equivalent to this queryYields a collection of
SqlSelects
which when combined as a union are equivalent to this query- Definition Classes
- SqlQuery
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def codecs: List[(Boolean, SqlMappingLike.Codec)]
The codecs corresponding to the columns of this query
The codecs corresponding to the columns of this query
- Definition Classes
- EmptySqlQuery → SqlQuery
- def cols: List[SqlColumn]
The columns of this query
The columns of this query
- Definition Classes
- EmptySqlQuery → SqlQuery
- def contains(other: ColumnOwner): Boolean
- Definition Classes
- EmptySqlQuery → ColumnOwner
- def context: Context
The context for this query
The context for this query
- Definition Classes
- EmptySqlQuery → SqlQuery → ColumnOwner
- def debugShow: String
- Definition Classes
- ColumnOwner
- def directlyOwns(col: SqlColumn): Boolean
- Definition Classes
- EmptySqlQuery → ColumnOwner
- 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])
- def findNamedOwner(col: SqlColumn): Option[TableExpr]
- Definition Classes
- EmptySqlQuery → ColumnOwner
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isSameOwner(other: ColumnOwner): Boolean
- Definition Classes
- ColumnOwner
- def isUnion: Boolean
Is this query an SQL Union
Is this query an SQL Union
- Definition Classes
- EmptySqlQuery → SqlQuery
- def nameOption: Option[String]
The name, if any, of this
ColumnOwner
The name, if any, of this
ColumnOwner
- Definition Classes
- ColumnOwner
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nest(parentContext: Context, extraCols: List[SqlColumn], oneToOne: Boolean, lateral: Boolean): Result[SqlQuery]
Nest this query as a subobject in the enclosing
parentContext
Nest this query as a subobject in the enclosing
parentContext
- Definition Classes
- EmptySqlQuery → SqlQuery
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def oneToOne: Boolean
Does one row of this query correspond to exactly one complete GraphQL value
Does one row of this query correspond to exactly one complete GraphQL value
- Definition Classes
- EmptySqlQuery → SqlQuery
- def owns(col: SqlColumn): Boolean
- Definition Classes
- EmptySqlQuery → ColumnOwner
- def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def subst(from: TableExpr, to: TableExpr): SqlQuery
Yields a copy of this query with all occurences of
from
replaced byto
Yields a copy of this query with all occurences of
from
replaced byto
- Definition Classes
- EmptySqlQuery → SqlQuery
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toFragment: Aliased[SqlMappingLike.Fragment]
Render this query as a
Fragment
Render this query as a
Fragment
- Definition Classes
- EmptySqlQuery → SqlQuery
- def toSubquery(name: String, lateral: Boolean): SqlSelect
Yields an equivalent query encapsulating this query as a subquery
Yields an equivalent query encapsulating this query as a subquery
- Definition Classes
- EmptySqlQuery → SqlQuery
- def toWithQuery(name: String, refName: Option[String]): SqlSelect
Yields an equivalent query encapsulating this query as a common table expression
Yields an equivalent query encapsulating this query as a common table expression
- Definition Classes
- EmptySqlQuery → SqlQuery
- 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 withContext(context: Context, extraCols: List[SqlColumn], extraJoins: List[SqlJoin]): SqlQuery
This query in the given context
This query in the given context
- Definition Classes
- EmptySqlQuery → SqlQuery