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

com.googlecode.openbox.db.DbPool Maven / Gradle / Ivy

package com.googlecode.openbox.db;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public interface DbPool {

	Connection getConnection() throws SQLException;

	void close(Connection conn, PreparedStatement stmt, ResultSet rs);

	void close(Connection conn, PreparedStatement stmt);

	void close(ResultSet rs);

	void close(PreparedStatement stmt);

	void close(Connection conn);
	
	void execute(String sql) throws SQLException;

	void printConnectionInfo();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy