Uses of Class
org.apache.commons.dbcp2.DelegatingPreparedStatement
Packages that use DelegatingPreparedStatement
Package
Description
Database Connection Pool API.
This package contains one public class which is a
ConnectionPoolDataSource (CPDS) implementation that can be used to
adapt older Driver based JDBC implementations.-
Uses of DelegatingPreparedStatement in org.apache.commons.dbcp2
Subclasses of DelegatingPreparedStatement in org.apache.commons.dbcp2Modifier and TypeClassDescriptionclassA base delegating implementation ofCallableStatement.classADelegatingCallableStatementthat cooperates withPoolingConnectionto implement a pool ofCallableStatements.classADelegatingPreparedStatementthat cooperates withPoolingConnectionto implement a pool ofPreparedStatements.Fields in org.apache.commons.dbcp2 with type parameters of type DelegatingPreparedStatementModifier and TypeFieldDescriptionprivate final org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> PoolableCallableStatement.poolTheKeyedObjectPoolfrom which this CallableStatement was obtained.private org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> PoolingConnection.pStmtPoolPool ofPreparedStatements.Methods in org.apache.commons.dbcp2 that return types with arguments of type DelegatingPreparedStatementModifier and TypeMethodDescriptionorg.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> PoolingConnection.getStatementPool()Gets the prepared statement pool.org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> PoolingConnection.makeObject(PStmtKey key) KeyedPooledObjectFactorymethod for creatingPoolablePreparedStatements orPoolableCallableStatements.Method parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatementModifier and TypeMethodDescriptionvoidPoolingConnection.activateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) KeyedPooledObjectFactorymethod for activating pooled statements.voidPoolingConnection.destroyObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) KeyedPooledObjectFactorymethod for destroying PoolablePreparedStatements and PoolableCallableStatements.voidPoolingConnection.passivateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) voidPoolingConnection.setStatementPool(org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> pool) Sets the prepared statement pool.booleanPoolingConnection.validateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) KeyedPooledObjectFactorymethod for validating pooled statements.Constructor parameters in org.apache.commons.dbcp2 with type arguments of type DelegatingPreparedStatementModifierConstructorDescriptionPoolableCallableStatement(CallableStatement callableStatement, PStmtKey key, org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection) Constructs a new instance. -
Uses of DelegatingPreparedStatement in org.apache.commons.dbcp2.cpdsadapter
Fields in org.apache.commons.dbcp2.cpdsadapter with type parameters of type DelegatingPreparedStatementModifier and TypeFieldDescriptionprivate org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> PooledConnectionImpl.pStmtPoolMy pool ofPreparedStatements.Methods in org.apache.commons.dbcp2.cpdsadapter that return types with arguments of type DelegatingPreparedStatementModifier and TypeMethodDescriptionorg.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> PooledConnectionImpl.makeObject(PStmtKey key) MyKeyedPooledObjectFactorymethod for creatingPreparedStatements.Method parameters in org.apache.commons.dbcp2.cpdsadapter with type arguments of type DelegatingPreparedStatementModifier and TypeMethodDescriptionvoidPooledConnectionImpl.activateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) MyKeyedPooledObjectFactorymethod for activatingPreparedStatements.voidPooledConnectionImpl.destroyObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) MyKeyedPooledObjectFactorymethod for destroyingPreparedStatements.voidPooledConnectionImpl.passivateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) MyKeyedPooledObjectFactorymethod for passivatingPreparedStatements.voidPooledConnectionImpl.setStatementPool(org.apache.commons.pool2.KeyedObjectPool<PStmtKey, DelegatingPreparedStatement> statementPool) booleanPooledConnectionImpl.validateObject(PStmtKey key, org.apache.commons.pool2.PooledObject<DelegatingPreparedStatement> pooledObject) MyKeyedPooledObjectFactorymethod for validatingPreparedStatements.