Example usage for org.apache.commons.dbcp DelegatingConnection getDelegate

List of usage examples for org.apache.commons.dbcp DelegatingConnection getDelegate

Introduction

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

Prototype

public Connection getDelegate() 

Source Link

Document

Returns my underlying Connection .

Usage

From source file:org.deegree.commons.jdbc.ConnectionPool.java

public void invalidate(DelegatingConnection conn) throws Exception {
    conn.getDelegate().close();
    pool.invalidateObject(conn);
}