Uses of Class
org.apache.torque.util.Query

Packages that use Query
org.apache.torque.adapter Adapters between Torque and various databases. 
org.apache.torque.util Misc. 
 

Uses of Query in org.apache.torque.adapter
 

Methods in org.apache.torque.adapter with parameters of type Query
 void DBOracle.generateLimits(Query query, int offset, int limit)
          Build Oracle-style query with limit or offset.
 void DBPostgres.generateLimits(Query query, int offset, int limit)
          Generate a LIMIT limit OFFSET offset clause if offset > 0 or an LIMIT limit clause if limit is > 0 and offset is 0.
 void DBMM.generateLimits(Query query, int offset, int limit)
          Generate a LIMIT offset, limit clause if offset > 0 or an LIMIT limit clause if limit is > 0 and offset is 0.
 void DBDB2App.generateLimits(Query query, int offset, int limit)
          Build DB2 (OLAP) -style query with limit or offset.
 void DB.generateLimits(Query query, int offset, int limit)
          This method is used to generate the database specific query extension to limit the number of record returned.
 void AbstractDBAdapter.generateLimits(Query query, int offset, int limit)
          This method is used to generate the database specific query extension to limit the number of record returned.
 void DBSybase.generateLimits(Query query, int offset, int limit)
          Modify a query to add limit and offset values for Sybase.
 

Uses of Query in org.apache.torque.util
 

Methods in org.apache.torque.util that return Query
static Query SQLBuilder.buildQueryClause(Criteria crit, java.util.List params, SQLBuilder.QueryCallback qc)
          Builds a Query clause for Updating and deleting
 

Methods in org.apache.torque.util with parameters of type Query
static void JoinBuilder.processJoins(DB db, DatabaseMap dbMap, Criteria criteria, Query query)
          adds the Joins from the criteria to the query
 



Copyright © 2000-2009 Apache Software Foundation. All Rights Reserved.