Uses of Interface
org.postgresql.core.ParameterList
Packages that use ParameterList
Package
Description
-
Uses of ParameterList in org.postgresql.core
Methods in org.postgresql.core that return ParameterListModifier and TypeMethodDescriptionParameterList.copy()Perform a shallow copy of this ParameterList, returning a new instance (still suitable for passing to the owning Query).QueryExecutor.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.Query.createParameterList()Create a ParameterList suitable for storing parameters associated with this Query.Methods in org.postgresql.core with parameters of type ParameterListModifier and TypeMethodDescriptionvoidParameterList.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[] queries, ParameterList[] parameterLists, BatchResultHandler handler, int maxRows, int fetchSize, int flags, boolean adaptiveFetch) Execute several Query with adaptive fetch, 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.voidQueryExecutor.execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags, boolean adaptiveFetch) Execute a Query with adaptive fetch, 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.NativeQuery.toString(ParameterList parameters) Returns string representation of the query, substituting particular parameter values for parameter placeholders.NativeQuery.toString(ParameterList parameters, SqlSerializationContext context) Returns string representation of the query, substituting particular parameter values for parameter placeholders.Query.toString(ParameterList parameters) Returns string representation of the query, substituting particular parameter values for parameter placeholders.Query.toString(ParameterList parameters, SqlSerializationContext context) Returns string representation of the query, substituting particular parameter values for parameter placeholders. -
Uses of ParameterList in org.postgresql.core.v3
Subinterfaces of ParameterList in org.postgresql.core.v3Modifier and TypeInterfaceDescription(package private) interfaceCommon interface for all V3 parameter list implementations.Classes in org.postgresql.core.v3 that implement ParameterListModifier and TypeClassDescription(package private) classParameter list for V3 query strings that contain multiple statements.(package private) classParameter list for a single-statement V3 query.Methods in org.postgresql.core.v3 that return ParameterListModifier and TypeMethodDescriptionCompositeParameterList.copy()SimpleParameterList.copy()QueryExecutorImpl.createFastpathParameters(int count) CompositeQuery.createParameterList()SimpleQuery.createParameterList()Methods in org.postgresql.core.v3 with parameters of type ParameterListModifier and TypeMethodDescriptionvoidCompositeParameterList.appendAll(ParameterList list) voidSimpleParameterList.appendAll(ParameterList list) private StringBatchedQuery.buildNativeSql(ParameterList params, SqlSerializationContext context) voidQueryExecutorImpl.execute(Query[] queries, ParameterList[] parameterLists, BatchResultHandler batchHandler, int maxRows, int fetchSize, int flags) voidQueryExecutorImpl.execute(Query[] queries, ParameterList[] parameterLists, BatchResultHandler batchHandler, int maxRows, int fetchSize, int flags, boolean adaptiveFetch) voidQueryExecutorImpl.execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags) voidQueryExecutorImpl.execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags, boolean adaptiveFetch) byte[]QueryExecutorImpl.fastpathCall(int fnid, ParameterList parameters, boolean suppressBegin) BatchedQuery.toString(ParameterList params, SqlSerializationContext context) CompositeQuery.toString(ParameterList parameters) CompositeQuery.toString(ParameterList parameters, SqlSerializationContext context) SimpleQuery.toString(ParameterList parameters) SimpleQuery.toString(ParameterList parameters, SqlSerializationContext context) -
Uses of ParameterList in org.postgresql.fastpath
Methods in org.postgresql.fastpath with parameters of type ParameterListModifier and TypeMethodDescription(package private) voidFastpathArg.ByteStreamWriterFastpathArg.populateParameter(ParameterList params, int index) (package private) voidFastpathArg.populateParameter(ParameterList params, int index) -
Uses of ParameterList in org.postgresql.jdbc
Fields in org.postgresql.jdbc declared as ParameterListModifier and TypeFieldDescriptionprivate final ParameterList[]BatchResultHandler.parameterListsprotected final ParameterListPgPreparedStatement.preparedParametersFields in org.postgresql.jdbc with type parameters of type ParameterListMethods in org.postgresql.jdbc with parameters of type ParameterListModifier and TypeMethodDescriptionprotected BatchResultHandlerPgCallableStatement.createBatchHandler(Query[] queries, ParameterList[] parameterLists) protected BatchResultHandlerPgStatement.createBatchHandler(Query[] queries, ParameterList[] parameterLists) protected final 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 ParameterListModifierConstructorDescription(package private)BatchResultHandler(PgStatement pgStatement, Query[] queries, ParameterList[] parameterLists, boolean expectGeneratedKeys) (package private)CallableBatchResultHandler(PgStatement statement, Query[] queries, ParameterList[] parameterLists)