com.eshore.jdbc.api.ITransaction Maven / Gradle / Ivy
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