Home / Database / Oracle Application Express Documentation, Release 18.2
Application Express API Reference
Contents
Oracle Application Express Documentation, Release 18.2
Page 148 of 721

10.6 GET_NEXT_SESSION_ID Function

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;
Previous Page
Page 148 of 721
Next Page