Uses of Class
org.apache.commons.dbcp.AbandonedTrace
-
Packages that use AbandonedTrace Package Description org.apache.commons.dbcp Database Connection Pool API.org.apache.commons.dbcp.cpdsadapter This package contains one public class which is aConnectionPoolDataSource
(CPDS) implementation that can be used to adapt olderDriver
based jdbc implementations.org.apache.commons.dbcp.managed This package provides support for pooling of ManagedConnections. -
-
Uses of AbandonedTrace in org.apache.commons.dbcp
Subclasses of AbandonedTrace in org.apache.commons.dbcp Modifier and Type Class Description class
DelegatingCallableStatement
A base delegating implementation ofCallableStatement
.class
DelegatingConnection
A base delegating implementation ofConnection
.class
DelegatingDatabaseMetaData
A base delegating implementation ofDatabaseMetaData
.class
DelegatingPreparedStatement
A base delegating implementation ofPreparedStatement
.class
DelegatingResultSet
A base delegating implementation ofResultSet
.class
DelegatingStatement
A base delegating implementation ofStatement
.class
PoolableCallableStatement
ADelegatingCallableStatement
that cooperates withPoolingConnection
to implement a pool ofCallableStatement
s.class
PoolableConnection
A delegating connection that, rather than closing the underlying connection, returns itself to anObjectPool
when closed.class
PoolablePreparedStatement
ADelegatingPreparedStatement
that cooperates withPoolingConnection
to implement a pool ofPreparedStatement
s.class
PoolingConnection
ADelegatingConnection
that poolsPreparedStatement
s.private class
PoolingDataSource.PoolGuardConnectionWrapper
PoolGuardConnectionWrapper is a Connection wrapper that makes sure a closed connection cannot be used anymore.private static class
PoolingDriver.PoolGuardConnectionWrapper
PoolGuardConnectionWrapper is a Connection wrapper that makes sure a closed connection cannot be used anymore.Methods in org.apache.commons.dbcp with parameters of type AbandonedTrace Modifier and Type Method Description protected void
AbandonedTrace. addTrace(AbandonedTrace trace)
Add an object to the list of objects being traced.private void
AbandonedTrace. init(AbandonedTrace parent)
Initialize abandoned tracing for this object.protected void
AbandonedTrace. removeTrace(AbandonedTrace trace)
Remove a child object this object is tracing.Constructors in org.apache.commons.dbcp with parameters of type AbandonedTrace Constructor Description AbandonedTrace(AbandonedTrace parent)
Construct a new AbandonedTrace with a parent object. -
Uses of AbandonedTrace in org.apache.commons.dbcp.cpdsadapter
Subclasses of AbandonedTrace in org.apache.commons.dbcp.cpdsadapter Modifier and Type Class Description (package private) class
ConnectionImpl
This class is theConnection
that will be returned fromPooledConnectionImpl.getConnection()
.(package private) class
PoolablePreparedStatementStub
APoolablePreparedStatement
stub since activate and passivate are declared protected and we need to be able to call them within this package. -
Uses of AbandonedTrace in org.apache.commons.dbcp.managed
Subclasses of AbandonedTrace in org.apache.commons.dbcp.managed Modifier and Type Class Description class
ManagedConnection
ManagedConnection is responsible for managing a database connection in a transactional environment (typically called "Container Managed").class
PoolableManagedConnection
PoolableConnection that unregisters from TransactionRegistry on Connection real destroy.
-