Uses of Interface
org.postgresql.core.ParameterList
-
Packages that use ParameterList Package Description org.postgresql.core org.postgresql.core.v3 org.postgresql.fastpath org.postgresql.jdbc -
-
Uses of ParameterList in org.postgresql.core
Methods in org.postgresql.core that return ParameterList Modifier and Type Method Description ParameterListParameterList. copy()Perform a shallow copy of this ParameterList, returning a new instance (still suitable for passing to the owning Query).ParameterListQueryExecutor. createFastpathParameters(int count)Deprecated.This API is somewhat obsolete, as one may achieve similar performance and greater functionality by setting up a prepared statement to define the function call.ParameterListQuery. createParameterList()Create a ParameterList suitable for storing parameters associated with this Query.Methods in org.postgresql.core with parameters of type ParameterList Modifier and Type Method Description voidParameterList. appendAll(ParameterList list)Use this operation to append more parameters to the current list.voidQueryExecutor. execute(Query[] queries, ParameterList[] parameterLists, BatchResultHandler handler, int maxRows, int fetchSize, int flags)Execute several Query, passing results to a provided ResultHandler.voidQueryExecutor. execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags)Execute a Query, passing results to a provided ResultHandler.byte[]QueryExecutor. fastpathCall(int fnid, ParameterList params, boolean suppressBegin)Deprecated.This API is somewhat obsolete, as one may achieve similar performance and greater functionality by setting up a prepared statement to define the function call.java.lang.StringNativeQuery. toString(ParameterList parameters)Stringize this query to a human-readable form, substituting particular parameter values for parameter placeholders.java.lang.StringQuery. toString(ParameterList parameters)Stringize this query to a human-readable form, substituting particular parameter values for parameter placeholders. -
Uses of ParameterList in org.postgresql.core.v3
Subinterfaces of ParameterList in org.postgresql.core.v3 Modifier and Type Interface Description (package private) interfaceV3ParameterListCommon interface for all V3 parameter list implementations.Classes in org.postgresql.core.v3 that implement ParameterList Modifier and Type Class Description (package private) classCompositeParameterListParameter list for V3 query strings that contain multiple statements.(package private) classSimpleParameterListParameter list for a single-statement V3 query.Methods in org.postgresql.core.v3 that return ParameterList Modifier and Type Method Description ParameterListCompositeParameterList. copy()ParameterListSimpleParameterList. copy()ParameterListQueryExecutorImpl. createFastpathParameters(int count)ParameterListCompositeQuery. createParameterList()ParameterListSimpleQuery. createParameterList()Methods in org.postgresql.core.v3 with parameters of type ParameterList Modifier and Type Method Description voidCompositeParameterList. appendAll(ParameterList list)voidSimpleParameterList. appendAll(ParameterList list)private java.lang.StringBatchedQuery. buildNativeSql(ParameterList params)voidQueryExecutorImpl. execute(Query[] queries, ParameterList[] parameterLists, BatchResultHandler batchHandler, int maxRows, int fetchSize, int flags)voidQueryExecutorImpl. execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags)byte[]QueryExecutorImpl. fastpathCall(int fnid, ParameterList parameters, boolean suppressBegin)java.lang.StringBatchedQuery. toString(ParameterList params)java.lang.StringCompositeQuery. toString(ParameterList parameters)java.lang.StringSimpleQuery. toString(ParameterList parameters) -
Uses of ParameterList in org.postgresql.fastpath
Methods in org.postgresql.fastpath with parameters of type ParameterList Modifier and Type Method Description (package private) voidFastpathArg. populateParameter(ParameterList params, int index)Deprecated. -
Uses of ParameterList in org.postgresql.jdbc
Fields in org.postgresql.jdbc declared as ParameterList Modifier and Type Field Description private ParameterList[]BatchResultHandler. parameterListsprotected ParameterListPgPreparedStatement. preparedParametersFields in org.postgresql.jdbc with type parameters of type ParameterList Modifier and Type Field Description protected java.util.ArrayList<ParameterList>PgStatement. batchParametersMethods in org.postgresql.jdbc with parameters of type ParameterList Modifier and Type Method Description protected BatchResultHandlerPgCallableStatement. createBatchHandler(Query[] queries, ParameterList[] parameterLists)protected BatchResultHandlerPgStatement. createBatchHandler(Query[] queries, ParameterList[] parameterLists)protected voidPgStatement. execute(CachedQuery cachedQuery, ParameterList queryParameters, int flags)private voidPgStatement. executeInternal(CachedQuery cachedQuery, ParameterList queryParameters, int flags)Constructors in org.postgresql.jdbc with parameters of type ParameterList Constructor Description BatchResultHandler(PgStatement pgStatement, Query[] queries, ParameterList[] parameterLists, boolean expectGeneratedKeys)CallableBatchResultHandler(PgStatement statement, Query[] queries, ParameterList[] parameterLists)
-