Query

easysql.query.select.Query
See theQuery companion object
trait Query[T <: Tuple, A <: Tuple](val ast: SqlQuery, val selectItems: Map[String, String])

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Select[T, A]
class Union[T, A]
class Values[T]

Members list

Concise view

Value members

Concrete methods

infix def except[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def except[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def except[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]
infix def exceptAll[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def exceptAll[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def exceptAll[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]
infix def intersect[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def intersect[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def intersect[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]
infix def intersectAll[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def intersectAll[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def intersectAll[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]
Extension method from Query
infix def union[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def union[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def union[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]
infix def unionAll[U <: Tuple](query: Query[U, _]): Union[UnionType[T, U], A]
infix def unionAll[U <: Tuple](query: U): Union[UnionType[T, U], A]
infix def unionAll[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]