Uses of Class
org.apache.commons.dbcp2.AbandonedTrace
Packages that use AbandonedTrace
Package
Description
Database Connection Pool API.
This package provides support for pooling of ManagedConnections.
-
Uses of AbandonedTrace in org.apache.commons.dbcp2
Subclasses of AbandonedTrace in org.apache.commons.dbcp2Modifier and TypeClassDescriptionclass
A base delegating implementation ofCallableStatement
.class
DelegatingConnection<C extends Connection>
A base delegating implementation ofConnection
.class
A base delegating implementation ofPreparedStatement
.final class
A base delegating implementation ofResultSet
.class
A base delegating implementation ofStatement
.class
ADelegatingCallableStatement
that cooperates withPoolingConnection
to implement a pool ofCallableStatement
s.class
A delegating connection that, rather than closing the underlying connection, returns itself to anObjectPool
when closed.class
ADelegatingPreparedStatement
that cooperates withPoolingConnection
to implement a pool ofPreparedStatement
s.class
ADelegatingConnection
that poolsPreparedStatement
s.Methods in org.apache.commons.dbcp2 that return types with arguments of type AbandonedTraceModifier and TypeMethodDescriptionprotected List
<AbandonedTrace> AbandonedTrace.getTrace()
Gets a list of objects being traced by this object.Methods in org.apache.commons.dbcp2 with parameters of type AbandonedTraceModifier and TypeMethodDescriptionprotected void
AbandonedTrace.addTrace
(AbandonedTrace trace) Adds an object to the list of objects being traced.protected void
AbandonedTrace.removeTrace
(AbandonedTrace trace) Removes a child object this object is tracing.Constructors in org.apache.commons.dbcp2 with parameters of type AbandonedTraceModifierConstructorDescriptionAbandonedTrace
(AbandonedTrace parent) Constructs a new AbandonedTrace with a parent object. -
Uses of AbandonedTrace in org.apache.commons.dbcp2.managed
Subclasses of AbandonedTrace in org.apache.commons.dbcp2.managedModifier and TypeClassDescriptionclass
ManagedConnection<C extends Connection>
ManagedConnection is responsible for managing a database connection in a transactional environment (typically called "Container Managed").class
PoolableConnection that unregisters from TransactionRegistry on Connection real destroy.