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

Packages that use Query
org.apache.torque.adapter Adapters between Torque and various databases. 
org.apache.torque.sql This package contains classes which are mainly used in the SQL generation process. 
 

Uses of Query in org.apache.torque.adapter
 

Methods in org.apache.torque.adapter with parameters of type Query
 void PostgresAdapter.generateLimits(Query query, long 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 AbstractAdapter.generateLimits(Query query, long offset, int limit)
          This method is used to generate the database specific query extension to limit the number of record returned.
 void OracleAdapter.generateLimits(Query query, long offset, int limit)
          Build Oracle-style query with limit or offset.
 void DerbyAdapter.generateLimits(Query query, long offset, int limit)
          Build Derby-style query with limit or offset.
 void Adapter.generateLimits(Query query, long offset, int limit)
          This method is used to generate the database specific query extension to limit the number of record returned.
 void MysqlAdapter.generateLimits(Query query, long 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 MssqlAdapter.generateLimits(Query query, long offset, int limit)
          Modify a query to add limit and offset values for Sybase.
 

Uses of Query in org.apache.torque.sql
 

Methods in org.apache.torque.sql that return Query
static Query SqlBuilder.buildQuery(Criteria crit)
          Deprecated. please use org.apache.torque.criteria.Criteria instead of org.apache.torque.util.Criteria.
static Query SqlBuilder.buildQuery(Criteria crit)
          Builds a Query from a criteria.
 

Methods in org.apache.torque.sql with parameters of type Query
static void JoinBuilder.processJoins(CriteriaInterface<?> criteria, Query query)
          Adds the Joins from the criteria to the query.
 



Copyright © 2000-2013 The Apache Software Foundation. All Rights Reserved.