Home > APEX_CUSTOM_AUTH > GET_NEXT_SESS...
Previous |
Next |
This function generates the next session ID from the Oracle Application Express sequence generator. This function returns a number.
Syntax
APEX_CUSTOM_AUTH.GET_NEXT_SESSION_ID RETURN NUMBER;
Example
The following example generates the next session ID and stores it into a variable.
DECLARE VAL NUMBER; BEGIN VAL := APEX_CUSTOM_AUTH.GET_NEXT_SESSION_ID; END;