|
Scala
1.4.0.4 |
|||
Method Summary | |
abstract
|
def fromClause: List[Relation]
Defines the relations from which the query will obtain its data. |
abstract
|
def groupByClause: Option[List[Expression]]
Defines the grouping of the returned relation's tuples. |
abstract
|
def havingClause: Option[Expression]
Defines conditions that must be true in the returned relation's tuples. |
abstract
|
def selectList: List[DerivedColumn]
Defines the output fields that a tuple in the returned relation will contain, and their content with respect to the tables in the database. |
abstract
|
def setQuantifier: Option[SetQuantifier]
Defines if duplicated tuples should be removed from the returned relation. |
def sqlInnerString: String
A SQL-99 compliant string representation of the relation sub- statement. |
|
def sqlString: String
A SQL-99 compliant string representation of the select statement. |
|
abstract
|
def whereClause: Option[Expression]
Defines condition that must be true in the returned relation's tuples. |
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/ScalaObject-class |
getScalaType |
Methods inherited from scala/dbc/statement/Relation-class |
execute, execute, fieldTypes, isCompatibleType, sqlTypeString, typeCheck |
Method Detail |
abstract def setQuantifier: Option[SetQuantifier]
abstract def selectList: List[DerivedColumn]
abstract def fromClause: List[Relation]
abstract def whereClause: Option[Expression]
abstract def groupByClause: Option[List[Expression]]
selectList
must
use aggregate functions for calculation.
abstract def havingClause: Option[Expression]
def sqlString: String
def sqlInnerString: String
|
Scala
1.4.0.4 |
|||