Uses of Class
com.caucho.db.sql.FromItem

Packages that use FromItem
com.caucho.db.fun   
com.caucho.db.sql   
 

Uses of FromItem in com.caucho.db.fun
 

Method parameters in com.caucho.db.fun with type arguments of type FromItem
 long BitandExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 

Uses of FromItem in com.caucho.db.sql
 

Methods in com.caucho.db.sql that return FromItem
 FromItem[] Query.getFromItems()
          Returns any from items.
 

Methods in com.caucho.db.sql with parameters of type FromItem
 com.caucho.db.sql.RowIterateExpr Expr.getIndexExpr(FromItem fromItem)
          Returns an index expression if available.
protected  void Query.setFromItems(FromItem[] fromItems)
          Sets from items.
 

Method parameters in com.caucho.db.sql with type arguments of type FromItem
 long Expr.cost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long Expr.indexCost(java.util.ArrayList<FromItem> costItems)
          Returns the cost bonus for an index.
 long Expr.indexSubCost(java.util.ArrayList<FromItem> costItems)
          Returns the cost bonus for an index.
protected  void Query.setFromItems(java.util.ArrayList<FromItem> fromItems)
          Sets from items.
 long ExistsEvalExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long ExistsExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long Expr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long SubSelectEvalExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long SubSelectExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 long SubSelectParamExpr.subCost(java.util.ArrayList<FromItem> fromList)
          Returns the cost based on the given FromList.
 

Constructors in com.caucho.db.sql with parameters of type FromItem
Query(Database db, java.lang.String sql, FromItem[] fromItems)
           
TempQuery(FromItem[] fromItems)