01: package liquibase.database.sql;
02:
03: import liquibase.database.Database;
04: import liquibase.exception.StatementNotSupportedOnDatabaseException;
05:
06: public interface SqlStatement {
07: public String getSqlStatement(Database database)
08: throws StatementNotSupportedOnDatabaseException;
09:
10: public String getEndDelimiter(Database database);
11:
12: public boolean supportsDatabase(Database database);
13:
14: }
|