Uses of Class
org.apache.empire.db.expr.join.DBJoinExpr

Packages that use DBJoinExpr
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.expr.join This package contains SQL-generator classes for join expressions used in the from clause. 
org.apache.empire.db.sqlite   
 

Uses of DBJoinExpr in org.apache.empire.db
 

Fields in org.apache.empire.db with type parameters of type DBJoinExpr
protected  List<DBJoinExpr> DBCommand.joins
           
 

Methods in org.apache.empire.db that return DBJoinExpr
 DBJoinExpr DBCommand.join(DBColumnExpr left, DBColumn right)
          Adds an inner join based on two columns to the list of join expressions.
 DBJoinExpr DBCommand.join(DBColumnExpr left, DBColumn right, DBJoinType joinType)
          Adds a join based on two columns to the list of join expressions.
 DBJoinExpr DBCommand.join(DBRowSet rowset, DBCompareExpr cmp)
          Adds an inner join based on a compare expression to the command.
 DBJoinExpr DBCommand.join(DBRowSet rowset, DBCompareExpr cmp, DBJoinType joinType)
          Adds a join based on a compare expression to the command.
 

Methods in org.apache.empire.db that return types with arguments of type DBJoinExpr
 List<DBJoinExpr> DBCommand.getJoins()
          Returns a copy of the defined joins.
 

Methods in org.apache.empire.db with parameters of type DBJoinExpr
 void DBCommand.join(DBJoinExpr join)
          Adds a join to the list of join expressions.
 

Method parameters in org.apache.empire.db with type arguments of type DBJoinExpr
 void DBCommand.addJoins(List<DBJoinExpr> joinExprList)
          Adds a list of join expressions to the command.
 

Uses of DBJoinExpr in org.apache.empire.db.expr.join
 

Subclasses of DBJoinExpr in org.apache.empire.db.expr.join
 class DBJoinExprEx
          This class is used for building a join expression of an SQL statement.
 

Methods in org.apache.empire.db.expr.join that return DBJoinExpr
 DBJoinExpr DBJoinExpr.and(DBColumnExpr c1, DBColumnExpr c2)
          This function adds an additional constraint to the join.
 

Uses of DBJoinExpr in org.apache.empire.db.sqlite
 

Methods in org.apache.empire.db.sqlite that return DBJoinExpr
 DBJoinExpr DBDatabaseDriverSQLite.DBCommandSQLite.join(DBColumnExpr left, DBColumn right, DBJoinType joinType)
           
 

Method parameters in org.apache.empire.db.sqlite with type arguments of type DBJoinExpr
 void DBDatabaseDriverSQLite.DBCommandSQLite.addJoins(List<DBJoinExpr> joinExprList)
           
 



Copyright © 2008–2014 Apache Software Foundation. All rights reserved.