com.mchange.v2.c3p0.impl.ConnectionTestPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.c3p0
Show all versions of org.apache.servicemix.bundles.c3p0
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.mchange.v2.c3p0.impl;
import java.sql.Connection;
import javax.sql.PooledConnection;
interface ConnectionTestPath
{
// if proxyConn is provided, just test it.
// if not, we have to get a proxy Connection from the PooledConnection,
// then be sure to close() or detach the proxy
public void testPooledConnection(PooledConnection pc, Connection proxyConn) throws Exception;
}