Uses of Class
org.apache.commons.dbcp2.DelegatingConnection
-
Packages that use DelegatingConnection Package Description org.apache.commons.dbcp2 Database Connection Pool API.org.apache.commons.dbcp2.managed This package provides support for pooling of ManagedConnections. -
-
Uses of DelegatingConnection in org.apache.commons.dbcp2
Subclasses of DelegatingConnection in org.apache.commons.dbcp2 Modifier and Type Class Description classPoolableConnectionA delegating connection that, rather than closing the underlying connection, returns itself to anObjectPoolwhen closed.classPoolingConnectionADelegatingConnectionthat poolsPreparedStatements.Methods in org.apache.commons.dbcp2 that return DelegatingConnection Modifier and Type Method Description protected DelegatingConnection<?>DelegatingStatement. getConnectionInternal()Gets the internal connection.Constructors in org.apache.commons.dbcp2 with parameters of type DelegatingConnection Constructor Description DelegatingCallableStatement(DelegatingConnection<?> connection, java.sql.CallableStatement statement)Creates a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.DelegatingDatabaseMetaData(DelegatingConnection<?> connection, java.sql.DatabaseMetaData databaseMetaData)Constructs a new instance for the given delegating connection and database meta data.DelegatingPreparedStatement(DelegatingConnection<?> connection, java.sql.PreparedStatement statement)Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.DelegatingStatement(DelegatingConnection<?> connection, java.sql.Statement statement)Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.PoolableCallableStatement(java.sql.CallableStatement callableStatement, PStmtKey key, org.apache.commons.pool2.KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<java.sql.Connection> connection)Constructs a new instance.PoolablePreparedStatement(java.sql.PreparedStatement stmt, K key, org.apache.commons.pool2.KeyedObjectPool<K,PoolablePreparedStatement<K>> pool, DelegatingConnection<?> conn)Constructs a new instance. -
Uses of DelegatingConnection in org.apache.commons.dbcp2.managed
Subclasses of DelegatingConnection in org.apache.commons.dbcp2.managed Modifier and Type Class Description classManagedConnection<C extends java.sql.Connection>ManagedConnection is responsible for managing a database connection in a transactional environment (typically called "Container Managed").classPoolableManagedConnectionPoolableConnection that unregisters from TransactionRegistry on Connection real destroy.
-