com.agimatec.sql.script.ScriptVisitor Maven / Gradle / Ivy
package com.agimatec.sql.script;
import java.sql.SQLException;
/**
* Interface -
* a class that visits parsed SQL statements.
*
*
*/
public interface ScriptVisitor {
/**
* @param statement
*/
int visitStatement(String statement) throws SQLException;
/**
* @param theComment
*/
void visitComment(String theComment) throws SQLException;
/**
*
*/
void doCommit() throws SQLException;
/**
*
*/
void doRollback() throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy