Uses of Class
org.h2.expression.Parameter

Packages that use Parameter
org.h2.command This package contains the parser and the base classes for prepared SQL statements. 
org.h2.command.dml Contains DML (data manipulation language) and related SQL statements. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of Parameter in org.h2.command
 

Fields in org.h2.command with type parameters of type Parameter
protected  ObjectArray<Parameter> Prepared.parameters
          The list of parameters.
 

Methods in org.h2.command that return types with arguments of type Parameter
 ObjectArray<Parameter> Prepared.getParameters()
          Get the parameter list.
 

Method parameters in org.h2.command with type arguments of type Parameter
 void Prepared.setParameterList(ObjectArray<Parameter> parameters)
          Set the parameter list of this statement.
 

Uses of Parameter in org.h2.command.dml
 

Methods in org.h2.command.dml with parameters of type Parameter
 void Select.addGlobalCondition(Parameter param, int columnId, int comparisonType)
           
 void SelectUnion.addGlobalCondition(Parameter param, int columnId, int comparisonType)
           
abstract  void Query.addGlobalCondition(Parameter param, int columnId, int comparisonType)
          Add a condition to the query.
 

Uses of Parameter in org.h2.index
 

Constructor parameters in org.h2.index with type arguments of type Parameter
ViewIndex(TableView view, java.lang.String querySQL, ObjectArray<Parameter> originalParameters, boolean recursive)
           
 

Uses of Parameter in org.h2.table
 

Constructor parameters in org.h2.table with type arguments of type Parameter
TableView(Schema schema, int id, java.lang.String name, java.lang.String querySQL, ObjectArray<Parameter> params, java.lang.String[] columnNames, Session session, boolean recursive)