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

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

There is a newer version: 3.6.1
Show newest version
package org.sqlproc.engine.plugin;

import org.sqlproc.engine.SqlFeature;
import org.sqlproc.engine.SqlRuntimeContext;

/**
 * The SQL Processor plugin devoted to the sequence SELECT SQL construction.
 * 
 * There are utilized the patterns from the {@link SqlFeature}. These pattern have to be combined with the sequence name
 * used in the META SQL query in the next way:
 * 
    *
  • $n is the name of the sequence from the META SQL query
  • *
* * @author Vladimir Hudec */ public interface SqlSequencePlugin extends Modifiers { /** * Used to construct the sequence SELECT SQL. * * @param runtimeCtx * the public runtime context * @param sequenceName * the sequence name * @return the final sequence SELECT SQL */ public String sequenceSelect(SqlRuntimeContext runtimeCtx, String sequenceName); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy