
org.sqlproc.engine.plugin.SqlExecutionPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-processor Show documentation
Show all versions of sql-processor Show documentation
SQL Processor - Data Driven Queries
package org.sqlproc.engine.plugin;
/**
* The SQL Processor plugin devoted to possible SQL query/command modification just before it is executed.
*
* @author Vladimir Hudec
*/
public interface SqlExecutionPlugin extends Modifiers {
/**
* Used to possible SQL query/command modification just before it is executed.
*
* @param name
* Name of the META SQL query or statement
* @param queryString
* the SQL query command
* @return the SQL query command, which is going to be executed
*/
public String beforeSqlExecution(String name, String queryString);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy