22.14 EXECUTE_DML Procedure

This procedure executes the DML context . This procedure is called after:
  • After the context has been opened (open_dml_context) .
  • One or many DML rows have been added with add_dml_row.
  • Column values have been set with set_values, set_null or set_value.

Syntax

PROCEDURE EXECUTE_DML(
    p_context               IN t_context,
    p_continue_on_error     IN BOOLEAN DEFAULT FALSE );

Parameters

Table 22-11 EXECUTE_DML Procedure Parameters

Parameter Description

p_context

Context object obtained with one of the OPEN_ functions.

p_continue_on_error

Whether to continue executing DML for the remaining rows after an error occurred (defaults to false).