Uses of Package
org.apache.commons.dbcp
-
Packages that use org.apache.commons.dbcp Package Description org.apache.commons.dbcp Database Connection Pool API.org.apache.commons.dbcp.cpdsadapter This package contains one public class which is aConnectionPoolDataSource
(CPDS) implementation that can be used to adapt olderDriver
based jdbc implementations.org.apache.commons.dbcp.managed This package provides support for pooling of ManagedConnections. -
Classes in org.apache.commons.dbcp used by org.apache.commons.dbcp Class Description AbandonedConfig Configuration settings for handling abandoned db connections.AbandonedTrace Tracks db connection usage for recovering and reporting abandoned db connections.ConnectionFactory Abstract factory interface for creatingConnection
s.DelegatingCallableStatement A base delegating implementation ofCallableStatement
.DelegatingConnection A base delegating implementation ofConnection
.DelegatingPreparedStatement A base delegating implementation ofPreparedStatement
.DelegatingStatement A base delegating implementation ofStatement
.PoolableConnectionFactory APoolableObjectFactory
that createsPoolableConnection
s. -
Classes in org.apache.commons.dbcp used by org.apache.commons.dbcp.cpdsadapter Class Description AbandonedTrace Tracks db connection usage for recovering and reporting abandoned db connections.DelegatingConnection A base delegating implementation ofConnection
.DelegatingPreparedStatement A base delegating implementation ofPreparedStatement
.DelegatingStatement A base delegating implementation ofStatement
.PoolablePreparedStatement ADelegatingPreparedStatement
that cooperates withPoolingConnection
to implement a pool ofPreparedStatement
s. -
Classes in org.apache.commons.dbcp used by org.apache.commons.dbcp.managed Class Description AbandonedConfig Configuration settings for handling abandoned db connections.AbandonedTrace Tracks db connection usage for recovering and reporting abandoned db connections.BasicDataSource Basic implementation ofjavax.sql.DataSource
that is configured via JavaBeans properties.ConnectionFactory Abstract factory interface for creatingConnection
s.DelegatingConnection A base delegating implementation ofConnection
.PoolableConnection A delegating connection that, rather than closing the underlying connection, returns itself to anObjectPool
when closed.PoolableConnectionFactory APoolableObjectFactory
that createsPoolableConnection
s.PoolingDataSource A simpleDataSource
implementation that obtainsConnection
s from the specifiedObjectPool
.