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

com.jn.sqlhelper.dialect.sqlparser.SqlStatementWrapper Maven / Gradle / Ivy

package com.jn.sqlhelper.dialect.sqlparser;

public interface SqlStatementWrapper  {
    String getOriginalSql();
    void setOriginalSql(String sql);

    void setStatement(Statement statement);
    Statement get();

    /**
     * sql has changed ?
     * @return true if the original sql was changed
     */
    boolean isChanged();

    void setChanged(boolean changed);

    /**
     *
     * @return the new sql
     */
    String getSql();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy