Example usage for org.apache.commons.dbcp DelegatingConnection subclass-usage

List of usage examples for org.apache.commons.dbcp DelegatingConnection subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.dbcp DelegatingConnection subclass-usage.

Usage

From source file com.zimbra.cs.db.DebugConnection.java

class DebugConnection extends DelegatingConnection {
    protected final Connection mConn;

    DebugConnection(Connection conn) {
        super(conn);
        mConn = conn;