sqlg3.runtime.DBSpecific Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlg3-runtime Show documentation
Show all versions of sqlg3-runtime Show documentation
SQLG is a preprocessor and a library that uses code generation to simplify writing JDBC code
The newest version!
package sqlg3.runtime;
import java.sql.SQLException;
/**
* Database-specific operations interface.
*/
public interface DBSpecific {
/**
* Gets next number from sequence
*
* @param sequence sequence name
*/
String getNextIdSql(String sequence) throws SQLException;
}