com.mchange.v2.c3p0.PoolBackedDataSource 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;
import com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource;
public final class PoolBackedDataSource extends AbstractPoolBackedDataSource implements PooledDataSource
{
public PoolBackedDataSource( boolean autoregister )
{ super( autoregister ); }
public PoolBackedDataSource()
{ this( true ); }
public PoolBackedDataSource(String configName)
{
this();
initializeNamedConfig( configName, false );
}
// no support for a longer form with config
public String toString( boolean show_config ) { return this.toString(); }
}