Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.apache.commons.dbcp

Interface Summary
ConnectionFactory Abstract factory interface for creating java.sql.Connections.
 

Class Summary
AbandonedConfig Deprecated. This will be removed in a future version of DBCP.
AbandonedObjectPool Deprecated. This will be removed in a future version of DBCP.
AbandonedTrace Deprecated. This will be removed in a future version of DBCP.
BasicDataSource Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties.
BasicDataSourceFactory JNDI object factory that creates an instance of BasicDataSource that has been configured based on the RefAddr values of the specified Reference, which must match the names and data types of the BasicDataSource bean properties.
DataSourceConnectionFactory A javax.sql.DataSource-based implementation of ConnectionFactory.
DelegatingCallableStatement A base delegating implementation of java.sql.CallableStatement.
DelegatingConnection A base delegating implementation of java.sql.Connection.
DelegatingPreparedStatement A base delegating implementation of java.sql.PreparedStatement.
DelegatingResultSet A base delegating implementation of java.sql.ResultSet.
DelegatingStatement A base delegating implementation of java.sql.Statement.
DriverConnectionFactory A java.sql.Driver-based implementation of ConnectionFactory.
DriverManagerConnectionFactory A java.sql.DriverManager-based implementation of ConnectionFactory.
PoolableConnection A delegating connection that, rather than closing the underlying connection, returns itself to an org.apache.commons.pool.ObjectPool when closed.
PoolableConnectionFactory A org.apache.commons.pool.PoolableObjectFactory that creates PoolableConnections.
PoolablePreparedStatement A DelegatingPreparedStatement that cooperates with PoolingConnection to implement a pool of java.sql.PreparedStatements.
PooledTestObject  
PoolingConnection A DelegatingConnection that pools java.sql.PreparedStatements.
PoolingDataSource A simple javax.sql.DataSource implementation that obtains java.sql.Connections from the specified org.apache.commons.pool.ObjectPool.
PoolingDriver A java.sql.Driver implementation that obtains java.sql.Connections from a registered org.apache.commons.pool.ObjectPool.
TestAbandonedBasicDataSource TestSuite for BasicDataSource with abandoned connection trace enabled
TestAbandonedObjectPool TestCase for AbandonedObjectPool
TestAll  
TestBasicDataSource TestSuite for BasicDataSource
TestBasicDataSourceFactory TestSuite for BasicDataSourceFactory
TestConnectionPool Base test suite for DBCP pools.
TestDelegatingConnection  
TestDelegatingPreparedStatement  
TestDelegatingStatement  
TesterConnection A dummy java.sql.Connection, for testing purposes.
TesterDriver Mock object implementing the java.sql.Driver interface.
TesterPreparedStatement A dummy java.sql.PreparedStatement, for testing purposes.
TesterResultSet A dummy java.sql.ResultSet, for testing purposes.
TesterStatement A dummy java.sql.Statement, for testing purposes.
TestJOCLed  
TestManual Tests for a "manually configured", org.apache.commons.pool.impl.GenericObjectPool based PoolingDriver.
TestOracleBasicDataSource TestSuite for BasicDataSource
TestPStmtPoolingBasicDataSource TestSuite for BasicDataSource with prepared statement pooling enabled
 

Exception Summary
DbcpException Deprecated. This will be removed in a future version of DBCP.
SQLNestedException A SQLException subclass containing another Throwable