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.ddl Contains DDL (data definition language) and related 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  java.util.ArrayList<Parameter> Prepared.parameters
          The list of parameters.
 

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

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

Uses of Parameter in org.h2.command.ddl
 

Methods in org.h2.command.ddl that return types with arguments of type Parameter
 java.util.ArrayList<Parameter> PrepareProcedure.getParameters()
           
 

Uses of Parameter in org.h2.command.dml
 

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

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, java.util.ArrayList<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, java.util.ArrayList<Parameter> params, java.lang.String[] columnNames, Session session, boolean recursive)