Uses of Class
org.apache.commons.dbcp2.DelegatingPreparedStatement
-
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 Description classDelegatingCallableStatementA base delegating implementation ofCallableStatement.classPoolableCallableStatementADelegatingCallableStatementthat cooperates withPoolingConnectionto implement a pool ofCallableStatements.classPoolablePreparedStatement<K>ADelegatingPreparedStatementthat cooperates withPoolingConnectionto implement a pool ofPreparedStatements.Methods in org.apache.commons.dbcp2 that return types with arguments of type DelegatingPreparedStatement Modifier and Type Method Description KeyedObjectPool<PStmtKey,DelegatingPreparedStatement>PoolingConnection. getStatementPool()Gets the prepared statement pool.PooledObject<DelegatingPreparedStatement>PoolingConnection. makeObject(PStmtKey key)KeyedPooledObjectFactorymethod for creatingPoolablePreparedStatements orPoolableCallableStatements.Method parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatement Modifier and Type Method Description voidPoolingConnection. activateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)KeyedPooledObjectFactorymethod for activating pooled statements.voidPoolingConnection. destroyObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)KeyedPooledObjectFactorymethod for destroying PoolablePreparedStatements and PoolableCallableStatements.voidPoolingConnection. passivateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)voidPoolingConnection. setStatementPool(KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool)Sets the prepared statement pool.booleanPoolingConnection. validateObject(PStmtKey key, PooledObject<DelegatingPreparedStatement> pooledObject)KeyedPooledObjectFactorymethod for validating pooled statements.Constructor parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatement Constructor Description PoolableCallableStatement(CallableStatement callableStatement, PStmtKey key, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection)Constructor.
-