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 TypeMethodDescriptionvoid
execute
(PreparedStatementFactory factory) Executes the prepared statement created by the given factory.Methods inherited from interface liquibase.statement.SqlStatement
continueOnError, skipOnUnsupported
-
Method Details
-
execute
Executes the prepared statement created by the given factory.- Parameters:
factory
- a factory for creating aPreparedStatement
object.- Throws:
DatabaseException
- if an exception occurs while executing the prepared statement.
-