in scala.dbc.statement
class Jointure

abstract class Jointure
extends scala.dbc.statement.Relation
with scala.ScalaObject
A jointure between two relations.

Constructor Summary
def this

Def Summary
abstract def joinCondition : scala.Option[scala.dbc.statement.Expression]
The condition on which the jointure needs be done.
abstract def joinType : scala.dbc.statement.JoinType
The type of the jointure.
abstract def leftRelation : scala.dbc.statement.Relation
The relation on the left part of the join.
abstract def rightRelation : scala.dbc.statement.Relation
The relation on the right part of the join.
def sqlInnerString : java.lang.String
A SQL-99 compliant string representation of the relation sub- statement. This only has a meaning inside a query.
def sqlString : java.lang.String
A SQL-99 compliant string representation of the relation statement.
Def inherited from scala.dbc.statement.Relation
execute , execute, fieldTypes, isCompatibleType, sqlInnerString, sqlString, sqlTypeString, typeCheck
Constructor Detail
def this

Def Detail
abstract def joinCondition : scala.Option[scala.dbc.statement.Expression]
The condition on which the jointure needs be done.

abstract def joinType : scala.dbc.statement.JoinType
The type of the jointure.

abstract def leftRelation : scala.dbc.statement.Relation
The relation on the left part of the join.

abstract def rightRelation : scala.dbc.statement.Relation
The relation on the right part of the join.

def sqlInnerString : java.lang.String
A SQL-99 compliant string representation of the relation sub- statement. This only has a meaning inside a query.

def sqlString : java.lang.String
A SQL-99 compliant string representation of the relation statement.