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. parametersprivate java.util.ArrayList<Parameter>Parser. parametersprotected java.util.ArrayList<Parameter>Prepared. parametersThe list of parameters.private java.util.ArrayList<Parameter>Parser. suppliedParametersMethods in org.h2.command that return Parameter Modifier and Type Method Description private ParameterParser. 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 voidPrepared. setParameterList(java.util.ArrayList<Parameter> parameters)Set the parameter list of this statement.voidParser. 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 voidQuery. addGlobalCondition(Parameter param, int columnId, int comparisonType)Add a condition to the query.voidSelect. addGlobalCondition(Parameter param, int columnId, int comparisonType)voidSelectUnion. addGlobalCondition(Parameter param, int columnId, int comparisonType)voidTableValueConstructor. addGlobalCondition(Parameter param, int columnId, int comparisonType)(package private) voidQuery. 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 TableQuery. 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.TableTableValueConstructor. 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 ParameterConditionInParameter. parameterprivate ParameterConditionInParameter.ParameterList. parameterConstructors 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. originalParametersMethod parameters in org.h2.index with type arguments of type Parameter Modifier and Type Method Description private static voidViewIndex. 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 TableViewTableView. 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 intTableView. getMaxParameterIndex(java.util.ArrayList<Parameter> parameters)intTableView. getParameterOffset(java.util.ArrayList<Parameter> additionalParameters)Get the index of the first parameter.private voidTableView. 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)
-