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

Quick Search    Search Deep

Uses of Class
org.apache.commons.dbcp.DelegatingConnection

Uses of DelegatingConnection in org.apache.commons.dbcp
 

Subclasses of DelegatingConnection in org.apache.commons.dbcp
 class PoolableConnection
          A delegating connection that, rather than closing the underlying connection, returns itself to an org.apache.commons.pool.ObjectPool when closed.
 class PoolingConnection
          A DelegatingConnection that pools java.sql.PreparedStatements.
private  class PoolingDataSource.PoolGuardConnectionWrapper
          PoolGuardConnectionWrapper is a Connection wrapper that makes sure a closed connection cannot be used anymore.
private  class PoolingDriver.PoolGuardConnectionWrapper
          PoolGuardConnectionWrapper is a Connection wrapper that makes sure a closed connection cannot be used anymore.
 

Fields in org.apache.commons.dbcp declared as DelegatingConnection
private  DelegatingConnection TestDelegatingStatement.conn
           
private  DelegatingConnection TestDelegatingPreparedStatement.conn
           
private  DelegatingConnection TestDelegatingConnection.conn
           
protected  DelegatingConnection DelegatingStatement._conn
          The connection that created me.
 

Constructors in org.apache.commons.dbcp with parameters of type DelegatingConnection
DelegatingStatement(DelegatingConnection c, java.sql.Statement s)
          Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.
DelegatingPreparedStatement(DelegatingConnection c, java.sql.PreparedStatement s)
          Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.
DelegatingCallableStatement(DelegatingConnection c, java.sql.CallableStatement s)
          Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.