Uses of Class
org.datanucleus.store.rdbms.datasource.dbcp2.DelegatingConnection
-
Packages that use DelegatingConnection Package Description org.datanucleus.store.rdbms.datasource.dbcp2 This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0.org.datanucleus.store.rdbms.datasource.dbcp2.cpdsadapter This is a repackaged Apache Commons DBCP v2.7.0 and Apache Commons Pool v2.8.0. -
-
Uses of DelegatingConnection in org.datanucleus.store.rdbms.datasource.dbcp2
Subclasses of DelegatingConnection in org.datanucleus.store.rdbms.datasource.dbcp2 Modifier and Type Class Description class
PoolableConnection
A delegating connection that, rather than closing the underlying connection, returns itself to anObjectPool
when closed.class
PoolingConnection
ADelegatingConnection
that poolsPreparedStatement
s.private class
PoolingDataSource.PoolGuardConnectionWrapper<D extends java.sql.Connection>
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.datanucleus.store.rdbms.datasource.dbcp2 declared as DelegatingConnection Modifier and Type Field Description private DelegatingConnection<?>
DelegatingDatabaseMetaData. connection
The connection that created me.private DelegatingConnection<?>
DelegatingStatement. connection
The connection that created me.Methods in org.datanucleus.store.rdbms.datasource.dbcp2 that return DelegatingConnection Modifier and Type Method Description protected DelegatingConnection<?>
DelegatingStatement. getConnectionInternal()
Constructors in org.datanucleus.store.rdbms.datasource.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, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<java.sql.Connection> connection)
Constructor.PoolablePreparedStatement(java.sql.PreparedStatement stmt, K key, KeyedObjectPool<K,PoolablePreparedStatement<K>> pool, DelegatingConnection<?> conn)
Constructor. -
Uses of DelegatingConnection in org.datanucleus.store.rdbms.datasource.dbcp2.cpdsadapter
Subclasses of DelegatingConnection in org.datanucleus.store.rdbms.datasource.dbcp2.cpdsadapter Modifier and Type Class Description (package private) class
ConnectionImpl
This class is theConnection
that will be returned fromPooledConnectionImpl.getConnection()
.Fields in org.datanucleus.store.rdbms.datasource.dbcp2.cpdsadapter declared as DelegatingConnection Modifier and Type Field Description private DelegatingConnection<?>
PooledConnectionImpl. delegatingConnection
A DelegatingConnection used to create a PoolablePreparedStatementStub.
-