Uses of Interface
org.h2.expression.ParameterInterface
-
Packages that use ParameterInterface Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.expression Expressions include mathematical operations, simple values, and others.org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.message Trace (logging facility) and error message tool.org.h2.server.pg PostgreSQL server implementation of this database. -
-
Uses of ParameterInterface in org.h2.command
Fields in org.h2.command with type parameters of type ParameterInterface Modifier and Type Field Description private java.util.ArrayList<ParameterInterface>
CommandRemote. parameters
Methods in org.h2.command that return types with arguments of type ParameterInterface Modifier and Type Method Description abstract java.util.ArrayList<? extends ParameterInterface>
Command. getParameters()
Get the list of parameters.java.util.ArrayList<? extends ParameterInterface>
CommandContainer. getParameters()
java.util.ArrayList<? extends ParameterInterface>
CommandInterface. getParameters()
Get the parameters (if any).java.util.ArrayList<? extends ParameterInterface>
CommandList. getParameters()
java.util.ArrayList<ParameterInterface>
CommandRemote. getParameters()
-
Uses of ParameterInterface in org.h2.expression
Classes in org.h2.expression that implement ParameterInterface Modifier and Type Class Description class
Parameter
A parameter of a prepared statement.class
ParameterRemote
A client side (remote) parameter.Methods in org.h2.expression with parameters of type ParameterInterface Modifier and Type Method Description static void
ParameterRemote. writeMetaData(Transfer transfer, ParameterInterface p)
Write the parameter meta data to the transfer object. -
Uses of ParameterInterface in org.h2.jdbc
Fields in org.h2.jdbc with type parameters of type ParameterInterface Modifier and Type Field Description private java.util.ArrayList<? extends ParameterInterface>
JdbcParameterMetaData. parameters
Methods in org.h2.jdbc that return ParameterInterface Modifier and Type Method Description private ParameterInterface
JdbcParameterMetaData. getParameter(int param)
-
Uses of ParameterInterface in org.h2.message
Method parameters in org.h2.message with type arguments of type ParameterInterface Modifier and Type Method Description static java.lang.String
Trace. formatParams(java.util.ArrayList<? extends ParameterInterface> parameters)
Format the parameter list. -
Uses of ParameterInterface in org.h2.server.pg
Method parameters in org.h2.server.pg with type arguments of type ParameterInterface Modifier and Type Method Description private void
PgServerThread. sendParameterDescription(java.util.ArrayList<? extends ParameterInterface> parameters, int[] paramTypes)
private void
PgServerThread. setParameter(java.util.ArrayList<? extends ParameterInterface> parameters, int pgType, int i, int[] formatCodes)
-