All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mchange.v2.c3p0.impl.NullStatementSetManagedResultSet Maven / Gradle / Ivy

There is a newer version: 0.9.5.5_1
Show newest version
/*
 * 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; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy