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

com.eshore.jdbc.api.ITransaction Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.eshore.jdbc.api;

import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Savepoint;

import com.eshore.jdbc.impl.SQLExecuter;

public interface ITransaction {
	void commit()throws SQLException;
	void rollback()throws SQLException;
	
	Savepoint setSavePiont() throws SQLException;
	
	void releaseSavepoint(Savepoint savepoint) throws SQLException;
	
	void rollback(Savepoint savepoint)throws SQLException;
	
	ISQLExecuter getSQLExecuter();
	ISQLQuery getISQLQuery();
	
	public Connection getConnection();
	
	void dispose()throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy