-
Packages that use PStmtKey Package Description org.apache.commons.dbcp2 Database Connection Pool API.org.apache.commons.dbcp2.cpdsadapter This package contains one public class which is aConnectionPoolDataSource
(CPDS) implementation that can be used to adapt olderDriver
based JDBC implementations. -
-
Uses of PStmtKey in org.apache.commons.dbcp2
Methods in org.apache.commons.dbcp2 that return PStmtKey Modifier and Type Method and Description protected PStmtKey
PoolingConnection. createKey(String sql)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, int autoGeneratedKeys)
protected PStmtKey
PoolingConnection. createKey(String sql, int[] columnIndexes)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, int resultSetType, int resultSetConcurrency)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability, PoolingConnection.StatementType stmtType)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, int resultSetType, int resultSetConcurrency, PoolingConnection.StatementType stmtType)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, PoolingConnection.StatementType stmtType)
Creates a PStmtKey for the given arguments.protected PStmtKey
PoolingConnection. createKey(String sql, String[] columnNames)
Creates a PStmtKey for the given arguments.Methods in org.apache.commons.dbcp2 with parameters of type PStmtKey Modifier and Type Method and Description void
PoolingConnection. activateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
KeyedPooledObjectFactory
method for activating pooled statements.void
PoolingConnection. destroyObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
KeyedPooledObjectFactory
method for destroying PoolablePreparedStatements and PoolableCallableStatements.PooledObject<DelegatingPreparedStatement>
PoolingConnection. makeObject(PStmtKey key)
KeyedPooledObjectFactory
method for creatingPoolablePreparedStatement
s orPoolableCallableStatement
s.void
PoolingConnection. passivateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
boolean
PoolingConnection. validateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
KeyedPooledObjectFactory
method for validating pooled statements.Method parameters in org.apache.commons.dbcp2 with type arguments of type PStmtKey Modifier and Type Method and Description void
PoolingConnection. setStatementPool(KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool)
Sets the prepared statement pool.Constructors in org.apache.commons.dbcp2 with parameters of type PStmtKey Constructor and Description PoolableCallableStatement(CallableStatement callableStatement, PStmtKey key, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection)
Constructor.Constructor parameters in org.apache.commons.dbcp2 with type arguments of type PStmtKey Constructor and Description PoolableCallableStatement(CallableStatement callableStatement, PStmtKey key, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection)
Constructor. -
Uses of PStmtKey in org.apache.commons.dbcp2.cpdsadapter
Subclasses of PStmtKey in org.apache.commons.dbcp2.cpdsadapter Modifier and Type Class and Description class
PStmtKeyCPDS
Deprecated.UsePStmtKey
.
-