Package liquibase.statement
Interface ExecutablePreparedStatement
- All Superinterfaces:
SqlStatement
- All Known Implementing Classes:
BatchDmlExecutablePreparedStatement,ExecutablePreparedStatementBase,InsertExecutablePreparedStatement,UpdateExecutablePreparedStatement
To be implemented by instances that use a prepared statement for execution
-
Field Summary
Fields inherited from interface liquibase.statement.SqlStatement
EMPTY_SQL_STATEMENT -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PreparedStatementFactory factory) Executes the prepared statement created by the given factory.Methods inherited from interface liquibase.statement.SqlStatement
continueOnError, getFormattedStatement, skipOnUnsupported
-
Method Details
-
execute
Executes the prepared statement created by the given factory.- Parameters:
factory- a factory for creating aPreparedStatementobject.- Throws:
DatabaseException- if an exception occurs while executing the prepared statement.
-