Uses of Class
org.apache.commons.dbcp.DelegatingConnection
-
Packages that use DelegatingConnection Package Description org.apache.commons.dbcp Database Connection Pool API.org.apache.commons.dbcp.managed This package provides support for pooling of ManagedConnections. -
-
Uses of DelegatingConnection in org.apache.commons.dbcp
Subclasses of DelegatingConnection in org.apache.commons.dbcp Modifier and Type Class Description classPoolableConnectionA delegating connection that, rather than closing the underlying connection, returns itself to anObjectPoolwhen closed.classPoolingConnectionADelegatingConnectionthat poolsPreparedStatements.Fields in org.apache.commons.dbcp declared as DelegatingConnection Modifier and Type Field Description protected DelegatingConnectionDelegatingDatabaseMetaData. _connThe connection that created me.protected DelegatingConnectionDelegatingStatement. _connThe connection that created me.Constructors in org.apache.commons.dbcp with parameters of type DelegatingConnection Constructor Description 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.DelegatingDatabaseMetaData(DelegatingConnection c, java.sql.DatabaseMetaData m)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.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. -
Uses of DelegatingConnection in org.apache.commons.dbcp.managed
Subclasses of DelegatingConnection in org.apache.commons.dbcp.managed Modifier and Type Class Description classManagedConnectionManagedConnection is responsible for managing a database connection in a transactional environment (typically called "Container Managed").classPoolableManagedConnectionPoolableConnection that unregisters from TransactionRegistry on Connection real destroy.
-