Interface InsertAssembler

All Known Implementing Classes:
DefaultInsertAssembler, H2InsertAssembler, MssqlInsertAssembler, StandardInsertAssembler

public interface InsertAssembler
An interface for assembling INSERT queries.

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

  • Method Summary

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

    • assemble

      void assemble()
      Assembles the INSERT query.

      This method generates the SQL for the INSERT operation, including the table name, column list, values clause, and any other required SQL components.