| Home >> All >> org >> apache >> commons >> dbcp >> [ cpdsadapter Javadoc ] |
org.apache.commons.dbcp.cpdsadapter: Javadoc index of package org.apache.commons.dbcp.cpdsadapter.
Package Samples:
org.apache.commons.dbcp.cpdsadapter
Classes:
DriverAdapterCPDS: An adapter for jdbc drivers that do not include an implementation of javax.sql.ConnectionPoolDataSource , but still include a java.sql.DriverManager implementation. ConnectionPoolDataSource s are not used within general applications. They are used by DataSource implementations that pool Connection s, such as org.apache.commons.dbcp.datasources.SharedPoolDataSource . A J2EE container will normally provide some method of initializing the ConnectionPoolDataSource whose attributes are presented as bean getters/setters and then deploying it via JNDI. It is then available as a source of physical connections ...
ConnectionImpl: This class is the Connection that will be returned from PooledConnectionImpl.getConnection() . Most methods are wrappers around the jdbc 1.x Connection . A few exceptions include preparedStatement, close and isClosed. In accordance with the jdbc specification this Connection cannot be used after closed() is called. Any further usage will result in an SQLException.
PoolablePreparedStatementStub: A org.apache.commons.dbcp.PoolablePreparedStatement stub since activate and passivate are declared protected and we need to be able to call them within this package.
PooledConnectionImpl: Implementation of PooledConnection that is returned by PooledConnectionDataSource.
| Home | Contact Us | Privacy Policy | Terms of Service |