Java org.apache.commons.dbcp DelegatingConnection fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.dbcp DelegatingConnection fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.dbcp DelegatingConnection.

The text is from its open source code.

Subclass

org.apache.commons.dbcp.DelegatingConnection has subclasses.
Click this link to see all its subclasses.

Constructor

DelegatingConnection(Connection c)
Create a wrapper for the Connection which traces this Connection in the AbandonedObjectPool.

Method

ConnectiongetDelegate()
Returns my underlying Connection .
ConnectiongetInnermostDelegate()
If my underlying Connection is not a DelegatingConnection, returns it, otherwise recursively invokes this method on my delegate.
booleaninnermostDelegateEquals(Connection c)
Compares innermost delegate to the given connection.