Interface BeforeUpdate<T extends BeforeUpdate<T>>

    • Method Detail

      • update

        default Update update​(java.lang.String table)
        Continue query with UPDATE
        Parameters:
        table - The name of table to be updated
        Returns:
        The new UPDATE statement
      • update

        default Update update​(Table table)
        Continue query with UPDATE
        Parameters:
        table - The Table representation of table to be updated
        Returns:
        The new UPDATE statement
      • update

        default Update update​(Update update)
        Accept an existing UPDATE statement as predecessor
        Parameters:
        update - The existing UPDATE statement
        Returns:
        Returns the passed UPDATE statement
      • updateSQL

        default Update updateSQL​(java.lang.String sql)
        Use plain SQL to form this UPDATE statement
        Parameters:
        sql - The sql string
        Returns:
        The new UPDATE statement