trait QueryBuilder extends EnvProvider with Transformer with Typer
Ordering
- Alphabetic
- By Inheritance
Inherited
- QueryBuilder
- Typer
- Transformer
- EnvProvider
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class AllExpr() extends Query.PrimitiveExpr with Product with Serializable
- case class ArrExpr(elements: List[Expr]) extends Query.BaseExpr with Product with Serializable
- abstract class BaseExpr extends Query.PrimitiveExpr
- class BaseVarExpr extends Query.BaseExpr
- case class BinExpr(op: String, lop: Expr, rop: Expr) extends Query.BaseExpr with Product with Serializable
- case class BracesExpr(expr: Expr) extends Query.BaseExpr with Product with Serializable
- case class CastExpr(exp: Expr, typ: String) extends Query.BaseExpr with Product with Serializable
- case class ColExpr(col: Expr, alias: String, sepQuery: Option[Boolean] = None, hidden: Boolean = false) extends Query.PrimitiveExpr with Product with Serializable
- case class ColsExpr(cols: List[Query.ColExpr], hasAll: Boolean, hasIdentAll: Boolean, hasHidden: Boolean) extends Query.PrimitiveExpr with Product with Serializable
-
case class
ConstExpr(value: Any) extends Query.BaseExpr with Product with Serializable
**************************************************************************
- case class DeleteExpr(table: Query.IdentExpr, alias: String, filter: List[Expr], using: Expr, returning: Option[Query.ColsExpr]) extends Query.BaseExpr with Product with Serializable
- case class FunAsTableExpr(expr: Expr, colsDefs: Option[List[Query.TableColDefExpr]]) extends Query.PrimitiveExpr with Product with Serializable
- case class FunExpr(name: String, params: List[Expr], distinct: Boolean = false, aggregateOrder: Option[Expr] = None, aggregateWhere: Option[Expr] = None) extends Query.BaseExpr with Product with Serializable
- case class Group(groupExprs: List[Expr], having: Expr) extends Query.PrimitiveExpr with Product with Serializable
- case class HiddenColRefExpr(expr: Expr, resType: Class[_]) extends Query.PrimitiveExpr with Product with Serializable
- case class IdExpr(seqName: String) extends Query.BaseVarExpr with Product with Serializable
- case class IdRefExpr(seqName: String) extends Query.BaseVarExpr with Product with Serializable
- case class IdentAllExpr(name: List[String]) extends Query.PrimitiveExpr with Product with Serializable
- case class IdentExpr(name: List[String]) extends Query.PrimitiveExpr with Product with Serializable
- case class InExpr(lop: Expr, rop: List[Expr], not: Boolean) extends Query.BaseExpr with Product with Serializable
- class InsertExpr extends Query.DeleteExpr
- case class Order(ordExprs: List[(Expr, Expr, Expr)]) extends Query.PrimitiveExpr with Product with Serializable
- abstract class PrimitiveExpr extends Expr
- case class RecursiveExpr(exp: QueryParser.Query) extends Query.BaseExpr with Product with Serializable
- case class ResExpr(nr: Int, col: Any) extends Query.BaseVarExpr with Product with Serializable
- case class SQLConcatExpr(expr: Expr*) extends Query.BaseExpr with Product with Serializable
- case class SQLExpr(sqlSnippet: String, bindVars: List[Query.VarExpr]) extends Query.PrimitiveExpr with Product with Serializable
- case class SelectExpr(tables: List[Query.Table], filter: Expr, cols: Query.ColsExpr, distinct: Boolean, group: Expr, order: Expr, offset: Expr, limit: Expr, aliases: Map[String, Query.Table], parentJoin: Option[Expr]) extends Query.BaseExpr with Product with Serializable
- case class Table(table: Expr, alias: String, join: Query.TableJoin, outerJoin: String, nullable: Boolean) extends Query.PrimitiveExpr with Product with Serializable
- case class TableColDefExpr(name: String, typ: Option[String]) extends Query.PrimitiveExpr with Product with Serializable
- case class TableJoin(default: Boolean, expr: Expr, noJoin: Boolean, defaultJoinCols: (key_, key_)) extends Query.PrimitiveExpr with Product with Serializable
- case class UnExpr(op: String, operand: Expr) extends Query.BaseExpr with Product with Serializable
- class UpdateExpr extends Query.DeleteExpr
- case class ValuesExpr(vals: List[Expr]) extends Query.PrimitiveExpr with Product with Serializable
- case class ValuesFromSelectExpr(select: Query.SelectExpr) extends Query.PrimitiveExpr with Product with Serializable
- case class VarExpr(name: String, members: List[String], opt: Boolean) extends Query.BaseVarExpr with Product with Serializable
- case class WithBinExpr(tables: List[Query.WithTableExpr], query: Query.BinExpr) extends Query.BaseExpr with Query.WithExpr with Product with Serializable
- class WithDeleteExpr extends Query.DeleteExpr with Query.WithExpr
- trait WithExpr extends Query.BaseExpr
- class WithInsertExpr extends Query.InsertExpr with Query.WithExpr
- case class WithSelectExpr(tables: List[Query.WithTableExpr], query: Query.SelectExpr) extends Query.BaseExpr with Query.WithExpr with Product with Serializable
- case class WithTableExpr(name: String, cols: List[String], recursive: Boolean, query: Expr) extends Query.PrimitiveExpr with Product with Serializable
- class WithUpdateExpr extends Query.UpdateExpr with Query.WithExpr
-
trait
Def extends AnyRef
- Definition Classes
- Typer
-
case class
SelectDef(tables: List[QueryBuilder.Def], alias: String) extends QueryBuilder.Def with Product with Serializable
- Definition Classes
- Typer
-
case class
TableDef(name: String, alias: String) extends QueryBuilder.Def with Product with Serializable
- Definition Classes
- Typer
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
- val OPTIONAL_OPERAND_BIN_OPS: Set[String]
- val STANDART_BIN_OPS: Set[String]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def buildExpr(ex: QueryParser.Exp): Expr
- def buildExpr(ex: String): Expr
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
val
ctxStack: List[Ctx]
- Attributes
- protected
-
def
defs(tables: List[Query.Table]): List[Query.Def]
- Definition Classes
- Typer
-
def
env: Env
- Definition Classes
- QueryBuilder → EnvProvider
- def envId(): String
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
findAliasByName(name: String): Option[String]
- Definition Classes
- Typer
-
def
findJoin(table: String): Option[((key_, key_), String)]
- Definition Classes
- Typer
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
headDef: Query.Def
- Definition Classes
- Typer
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- lazy val joinsWithChildrenColExprs: Set[Query.ColExpr]
-
def
lastDef: Query.Def
- Definition Classes
- Typer
-
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 printBuilderChain: Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
tableDefs: List[Query.Def]
- Attributes
- protected
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
transform(expr: Expr, f: PartialFunction[Expr, Expr]): Expr
- Definition Classes
- Transformer
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )