Uses of Interface
org.postgresql.core.ParameterList

Packages that use ParameterList
org.postgresql.core   
org.postgresql.core.v2   
org.postgresql.core.v3   
org.postgresql.jdbc2   
 

Uses of ParameterList in org.postgresql.core
 

Methods in org.postgresql.core that return ParameterList
 ParameterList ParameterList.copy()
          Perform a shallow copy of this ParameterList, returning a new instance (still suitable for passing to the owning Query).
 ParameterList QueryExecutor.createFastpathParameters(int count)
          Create a new ParameterList implementation suitable for invoking a fastpath function via QueryExecutor.fastpathCall(int, org.postgresql.core.ParameterList, boolean).
 ParameterList Query.createParameterList()
          Create a ParameterList suitable for storing parameters associated with this Query.
 

Methods in org.postgresql.core with parameters of type ParameterList
 void QueryExecutor.execute(Query[] queries, ParameterList[] parameterLists, ResultHandler handler, int maxRows, int fetchSize, int flags)
          Execute several Query, passing results to a provided ResultHandler.
 void QueryExecutor.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)
          Invoke a backend function via the fastpath interface.
 String Query.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.v2
 

Methods in org.postgresql.core.v2 that return ParameterList
 ParameterList QueryExecutorImpl.createFastpathParameters(int count)
           
 

Methods in org.postgresql.core.v2 with parameters of type ParameterList
 void QueryExecutorImpl.execute(Query[] queries, ParameterList[] parameters, ResultHandler handler, int maxRows, int fetchSize, int flags)
           
 void QueryExecutorImpl.execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags)
           
 byte[] QueryExecutorImpl.fastpathCall(int fnid, ParameterList parameters, boolean suppressBegin)
           
 

Uses of ParameterList in org.postgresql.core.v3
 

Methods in org.postgresql.core.v3 that return ParameterList
 ParameterList QueryExecutorImpl.createFastpathParameters(int count)
           
 

Methods in org.postgresql.core.v3 with parameters of type ParameterList
 void QueryExecutorImpl.execute(Query[] queries, ParameterList[] parameterLists, ResultHandler handler, int maxRows, int fetchSize, int flags)
           
 void QueryExecutorImpl.execute(Query query, ParameterList parameters, ResultHandler handler, int maxRows, int fetchSize, int flags)
           
 byte[] QueryExecutorImpl.fastpathCall(int fnid, ParameterList parameters, boolean suppressBegin)
           
 

Uses of ParameterList in org.postgresql.jdbc2
 

Fields in org.postgresql.jdbc2 declared as ParameterList
protected  ParameterList AbstractJdbc2Statement.preparedParameters
           
 

Methods in org.postgresql.jdbc2 with parameters of type ParameterList
protected  void AbstractJdbc2Statement.execute(Query queryToExecute, ParameterList queryParameters, int flags)
           
 



Copyright © 2013. All Rights Reserved.