7.11 PERSISTENT_AUTH_ENABLEDファンクション

このファンクションは、インスタンス・レベルで永続認証が有効になっているかどうかを戻します。

構文

APEX_AUTHENTICATION.PERSISTENT_AUTH_ENABLED
    return BOOLEAN;

パラメータ

なし

次の例では、PERSISTENT_AUTH_ENABLEDを使用して通知を表示します。

begin
     if apex_authentication.persistent_auth_enabled then
         sys.htp.p('Persistant Authentication enabled');
     else
         sys.htp.p('Persisten Auhentication disabled');
     end if;
end;