- All Known Implementing Classes:
DefaultUpdateAssembler,H2UpdateAssembler,MssqlUpdateAssembler,StandardUpdateAssembler
public interface UpdateAssembler
An interface for assembling UPDATE queries.
This interface is responsible for generating the SQL for UPDATE operations. Implementations of this interface handle the construction of UPDATE statements, including the SET clause, WHERE clause, and any other necessary SQL components.
-
Method Summary
-
Method Details
-
assemble
void assemble()Assembles the UPDATE query.This method generates the SQL for the UPDATE operation, including the table name, SET clause, WHERE clause, and any other required SQL components.
-