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

org.sqlproc.engine.plugin.SqlExecutionPlugin Maven / Gradle / Ivy

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