Interface UpdateAssembler

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

    Modifier and Type
    Method
    Description
    void
    Assembles the UPDATE query.
  • 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.