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

com.mchange.v2.c3p0.stmt.StatementCache Maven / Gradle / Ivy

There is a newer version: 0.9.5.5_1
Show newest version
package com.mchange.v2.c3p0.stmt;

import java.lang.reflect.*;
import java.sql.*;
import com.mchange.v1.util.ClosableResource;

public interface StatementCache extends ClosableResource
{
    public Object checkoutStatement( Connection physicalConnection,
				     Method stmtProducingMethod, 
				     Object[] args )
	throws SQLException;

    public void checkinStatement( Object pstmt )
	throws SQLException;

    public void checkinAll( Connection pcon )
	throws SQLException;

    public void closeAll( Connection pcon )
	throws SQLException;

    public void close() 
	throws SQLException;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy