- 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
-
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.
-