-
Packages that use DelegatingPreparedStatement Package Description org.apache.commons.dbcp2 Database Connection Pool API. -
-
Uses of DelegatingPreparedStatement in org.apache.commons.dbcp2
Subclasses of DelegatingPreparedStatement in org.apache.commons.dbcp2 Modifier and Type Class and Description class
DelegatingCallableStatement
A base delegating implementation ofCallableStatement
.class
PoolableCallableStatement
ADelegatingCallableStatement
that cooperates withPoolingConnection
to implement a pool ofCallableStatement
s.class
PoolablePreparedStatement<K>
ADelegatingPreparedStatement
that cooperates withPoolingConnection
to implement a pool ofPreparedStatement
s.Methods in org.apache.commons.dbcp2 that return types with arguments of type DelegatingPreparedStatement Modifier and Type Method and Description PooledObject<DelegatingPreparedStatement>
PoolingConnection. makeObject(PStmtKey key)
KeyedPooledObjectFactory
method for creatingPoolablePreparedStatement
s orPoolableCallableStatement
s.Method parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatement 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.void
PoolingConnection. passivateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
void
PoolingConnection. setStatementPool(KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool)
Sets the prepared statement pool.boolean
PoolingConnection. validateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)
KeyedPooledObjectFactory
method for validating pooled statements.Constructor parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatement Constructor and Description PoolableCallableStatement(CallableStatement callableStatement, PStmtKey key, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection)
Constructor.
-