52.9 SET_VALUE Procedure Signature 2
This procedure sets an item's session state value based on CLOB.
Syntax
APEX_SESSION_STATE.SET_VALUE (
p_item IN VARCHAR2,
p_value IN CLOB,
p_commit IN BOOLEAN DEFAULT TRUE );
Parameters
Parameter | Description |
---|---|
p_item |
The item name. |
p_value |
The item value. |
p_commit
|
If TRUE (default), commit after modifying the session state. If FALSE , or if the existing value in session state equals p_value , no commit is issued. This parameter is ignored when the application's Session State Changes attribute is set to "End Of Request." |
Parent topic: APEX_SESSION_STATE