18.11 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_nullorset_value.
Syntax
PROCEDURE EXECUTE_DML(
    p_context               IN t_context,
    p_continue_on_error     IN BOOLEAN DEFAULT FALSE );Parameters
Table 18-9 EXECUTE_DML Procedure Parameters
| Parameter | Description | 
|---|---|
| 
 | Context object obtained with one of the OPEN_ functions. | 
| 
 | Whether to continue executing DML for the remaining rows after an error occurred (defaults to false). | 
Parent topic: APEX_EXEC