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

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

There is a newer version: 2.1.6
Show newest version
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 - 2025 Weber Informatics LLC | Privacy Policy