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

com.agimatec.sql.script.ScriptVisitor Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
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