| java.lang.Object org.gomba.QueryDefinition
QueryDefinition | class QueryDefinition (Code) | | Defines a JDBC query. The definition contains a SQL query with question
marks, the parameter definitions corresponding to the question marks, and
skip max expression. This class is used together with Query .
author: Flavio Tordini version: $Id: QueryDefinition.java,v 1.2 2004/09/16 09:23:16 flaviotordini Exp $ |
getMaxExpression | public Expression getMaxExpression()(Code) | | Returns the maxExpression, if any. |
getParameters | public List getParameters()(Code) | | Returns the parameters. |
getSQLQuery | public String getSQLQuery()(Code) | | Returns the SQL query containing question marks for thePreparedStatement parameters. |
getSkipExpression | public Expression getSkipExpression()(Code) | | Returns the skipExpression, if any. |
|
|