public interface Executor
void setDatabase(Database database)
<T> T queryForObject(SqlStatement sql, Class<T> requiredType) throws DatabaseException
DatabaseException<T> T queryForObject(SqlStatement sql, Class<T> requiredType, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionlong queryForLong(SqlStatement sql) throws DatabaseException
DatabaseExceptionlong queryForLong(SqlStatement sql, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionint queryForInt(SqlStatement sql) throws DatabaseException
DatabaseExceptionint queryForInt(SqlStatement sql, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionList queryForList(SqlStatement sql, Class elementType) throws DatabaseException
DatabaseExceptionList queryForList(SqlStatement sql, Class elementType, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionList<Map<String,?>> queryForList(SqlStatement sql) throws DatabaseException
DatabaseExceptionList<Map<String,?>> queryForList(SqlStatement sql, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionvoid execute(Change change) throws DatabaseException
DatabaseExceptionvoid execute(Change change, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionvoid execute(SqlStatement sql) throws DatabaseException
DatabaseExceptionvoid execute(SqlStatement sql, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionint update(SqlStatement sql) throws DatabaseException
DatabaseExceptionint update(SqlStatement sql, List<SqlVisitor> sqlVisitors) throws DatabaseException
DatabaseExceptionvoid comment(String message) throws DatabaseException
message - DatabaseExceptionboolean updatesDatabase()
Copyright © 2018 Liquibase.org. All rights reserved.