28.50 OPEN_JSON_SOURCE_DML_CONTEXT Function
Opens a DML context based on a JSON source.
Syntax
APEX_EXEC.OPEN_JSON_SOURCE_DML_CONTEXT (
p_static_id IN VARCHAR2,
p_array_column_name IN VARCHAR2 DEFAULT NULL,
--
p_columns IN t_columns DEFAULT c_empty_columns,
p_lost_update_detection IN t_lost_update_detection DEFAULT NULL )
RETURN t_context;Parameters
| Parameter | Description |
|---|---|
p_static_id |
Static ID of the JSON source. |
p_array_column_name |
Name of an Array column within the REST Source data profile. |
p_columns |
DML columns to pass to the data source. |
p_lost_update_detection |
Lost-update detection type. Use constants c_lost_update_* |
Returns
The context object representing the DML handle.
Example
Parent topic: APEX_EXEC