Uses of Class
org.apache.commons.dbcp2.DelegatingPreparedStatement
Packages that use DelegatingPreparedStatement
-
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.Classes in org.apache.commons.dbcp2 that implement interfaces with type arguments of type DelegatingPreparedStatementMethods 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.