Previous |
Next |
This function returns the language setting for the current user in the current Application Express session.
Syntax
APEX_UTIL.GET_SESSION_LANG RETURN VARCHAR2;
Parameters
None.
Example
The following example shows how to use the GET_SESSION_LANG function. It returns the session language for the current user in the current Application Express session into a local variable.
DECLARE VAL VARCHAR2(5); BEGIN VAL := APEX_UTIL.GET_SESSION_LANG; END;