Interface DeleteStatement

All Superinterfaces:
Statement
All Known Implementing Classes:
DeleteStatementDefault

public interface DeleteStatement extends Statement
  • Method Details

    • delete

      int delete()
      Execute the delete query and return the number of affected rows.
    • delete

      <T> List<T> delete(ResultSetHandler<T> resultSetHandler)
      Execute the delete query and return a result set.

      This can be used with a RETURNING clause.