com.mchange.v2.c3p0.impl.NullStatementSetManagedResultSet 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.
/*
* Created on Apr 6, 2004
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.mchange.v2.c3p0.impl;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Set;
final class NullStatementSetManagedResultSet extends SetManagedResultSet
{
NullStatementSetManagedResultSet(Set activeResultSets)
{ super( activeResultSets ); }
NullStatementSetManagedResultSet(ResultSet inner, Set activeResultSets)
{ super( inner, activeResultSets); }
public Statement getStatement()
{ return null; }
}