Interface DeleteAssembler

All Known Implementing Classes:
DefaultDeleteAssembler, H2DeleteAssembler, MssqlDeleteAssembler, StandardDeleteAssembler

public interface DeleteAssembler
An interface for assembling DELETE queries.

This interface is responsible for generating the SQL for DELETE operations. Implementations of this interface handle the construction of DELETE statements, including the WHERE clause and any other necessary SQL components.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Assembles the DELETE query.
  • Method Details

    • assemble

      void assemble()
      Assembles the DELETE query.

      This method generates the SQL for the DELETE operation, including the table name, WHERE clause, and any other required SQL components.