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

io.baltoro.db.Connection Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.db;

import java.sql.SQLException;

public class Connection
{

	private java.sql.Connection con;
	
	public Connection(java.sql.Connection con)
	{
		this.con = con;
	}
	
	
	public Statement createStatement()
	throws SQLException
	{
		return new Statement(con.createStatement());
	}
	

	public PreparedStatement prepareStatement(String sql)
	throws SQLException
	{
		return new PreparedStatement(con.prepareStatement(sql));
	}
	
	
	

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy