27.70 SET_VALUES Procedure
This procedure sets all column values in the DML context with corresponding column values from the source (query) context. Useful for querying a row, changing only single columns and writing the row back.
Syntax
APEX_EXEC.SET_VALUES (
p_context IN t_context,
p_source_context IN t_context )
Parameters
Parameter | Description |
---|---|
p_context |
Context object obtained with one of the OPEN_ functions. |
p_source_context |
Query context object to get column values from. |
Example
Parent topic: APEX_EXEC