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. -
-
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.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, 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, DatabaseMetaData databaseMetaData)
Constructs a new instance for the given delegating connection and database meta data.DelegatingPreparedStatement(DelegatingConnection<?> connection, 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, 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(CallableStatement callableStatement, PStmtKey key, KeyedObjectPool<PStmtKey,DelegatingPreparedStatement> pool, DelegatingConnection<Connection> connection)
Constructor.PoolablePreparedStatement(PreparedStatement stmt, K key, KeyedObjectPool<K,PoolablePreparedStatement<K>> pool, DelegatingConnection<?> conn)
Constructor.
-