Uses of Class
org.h2.expression.Parameter
-
Packages that use Parameter Package Description 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.query Contains queries.org.h2.expression.condition Condition expressions.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 Modifier and Type Field Description private java.util.ArrayList<Parameter>
CommandList. parameters
private java.util.ArrayList<Parameter>
Parser. parameters
protected java.util.ArrayList<Parameter>
Prepared. parameters
The list of parameters.private java.util.ArrayList<Parameter>
Parser. suppliedParameters
Methods in org.h2.command that return Parameter Modifier and Type Method Description private Parameter
Parser. readParameter()
Methods in org.h2.command that return types with arguments of type Parameter Modifier and Type Method Description java.util.ArrayList<Parameter>
Prepared. getParameters()
Get the parameter list.Method parameters in org.h2.command with type arguments of type Parameter Modifier and Type Method Description void
Prepared. setParameterList(java.util.ArrayList<Parameter> parameters)
Set the parameter list of this statement.void
Parser. setSuppliedParameters(java.util.ArrayList<Parameter> suppliedParameters)
-
Uses of Parameter in org.h2.command.ddl
Methods in org.h2.command.ddl that return types with arguments of type Parameter Modifier and Type Method Description java.util.ArrayList<Parameter>
PrepareProcedure. getParameters()
-
Uses of Parameter in org.h2.command.query
Methods in org.h2.command.query with parameters of type Parameter Modifier and Type Method Description 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)
void
TableValueConstructor. addGlobalCondition(Parameter param, int columnId, int comparisonType)
(package private) void
Query. addParameter(Parameter param)
Add a parameter to the parameter list.Method parameters in org.h2.command.query with type arguments of type Parameter Modifier and Type Method Description Table
Query. toTable(java.lang.String alias, Column[] columnTemplates, java.util.ArrayList<Parameter> parameters, boolean forCreateView, Query topQuery)
Converts this query to a table or a view.Table
TableValueConstructor. toTable(java.lang.String alias, Column[] columnTemplates, java.util.ArrayList<Parameter> parameters, boolean forCreateView, Query topQuery)
-
Uses of Parameter in org.h2.expression.condition
Fields in org.h2.expression.condition declared as Parameter Modifier and Type Field Description private Parameter
ConditionInParameter. parameter
private Parameter
ConditionInParameter.ParameterList. parameter
Constructors in org.h2.expression.condition with parameters of type Parameter Constructor Description ConditionInParameter(Expression left, boolean not, boolean whenOperand, Parameter parameter)
Create a new= ANY(?)
condition.ParameterList(Parameter parameter)
-
Uses of Parameter in org.h2.index
Fields in org.h2.index with type parameters of type Parameter Modifier and Type Field Description private java.util.ArrayList<Parameter>
ViewIndex. originalParameters
Method parameters in org.h2.index with type arguments of type Parameter Modifier and Type Method Description private static void
ViewIndex. setParameter(java.util.ArrayList<Parameter> paramList, int x, Value v)
Constructor parameters in org.h2.index with type arguments of type Parameter Constructor Description ViewIndex(TableView view, java.lang.String querySQL, java.util.ArrayList<Parameter> originalParameters, boolean recursive)
Constructor for the original index inTableView
. -
Uses of Parameter in org.h2.table
Method parameters in org.h2.table with type arguments of type Parameter Modifier and Type Method Description static TableView
TableView. createTableViewMaybeRecursive(Schema schema, int id, java.lang.String name, java.lang.String querySQL, java.util.ArrayList<Parameter> parameters, Column[] columnTemplates, SessionLocal session, boolean literalsChecked, boolean isTableExpression, boolean isTemporary, Database db)
Create a view.private static int
TableView. getMaxParameterIndex(java.util.ArrayList<Parameter> parameters)
int
TableView. getParameterOffset(java.util.ArrayList<Parameter> additionalParameters)
Get the index of the first parameter.private void
TableView. init(java.lang.String querySQL, java.util.ArrayList<Parameter> params, Column[] columnTemplates, SessionLocal session, boolean allowRecursive, boolean literalsChecked, boolean isTableExpression)
Constructor parameters in org.h2.table with type arguments of type Parameter Constructor Description TableView(Schema schema, int id, java.lang.String name, java.lang.String querySQL, java.util.ArrayList<Parameter> params, Column[] columnTemplates, SessionLocal session, boolean allowRecursive, boolean literalsChecked, boolean isTableExpression, boolean isTemporary)
-