Home > APEX_CUSTOM_AUTH > SESSION_ID_EX...
Previous |
Next |
This function returns a Boolean result based on the global package variable containing the current Oracle Application Express session ID. Returns true if the result is a positive number and returns false if the result is a negative number.
Syntax
APEX_CUSTOM_AUTH.SESSION_ID_EXISTS RETURN BOOLEAN;
Example
The following example checks whether the current session ID is valid and exists.
DECLARE L_VAL BOOLEAN; BEGIN L_VAL := APEX_CUSTOM_AUTH.SESSION_ID_EXISTS; IF VAL THEN htp.p('Exists'); ELSE htp.p('Does not exist'); END IF; END;