Table of Contents
This function checks whether the current authentication credentials are correct for the given REST Enabled SQL instance.
Syntax
function is_remote_sql_auth_valid( p_server_static_id in varchar2 ) return boolean;
Parameters
Table 14-15 IS_REMOTE_SQL_AUTH_VALID Function Parameters
Parameter | Description |
---|---|
|
Static ID of the REST enabled SQL instance. |
Returns
Returns true
, when credentials are correct, false
otherwise.
Example
The following example requires a REST enabled SQL instance created as "My Remote SQL
". It uses credentials stored as SCOTT_Credentials
.
begin apex_credentials.set_session_credentials( p_application_id => {application-id}, p_credential_name => 'SCOTT_Credentials', p_username => 'SCOTT', p_password => '****' ); if apex_exec.check_rest_enabled_sql_auth( p_server_static_id => 'My_Remote_SQL' ) then sys.dbms_output.put_line( 'credentials are correct!'); else sys.dbms_output.put_line( 'credentials are NOT correct!'); end if; end;
Parent topic: APEX_EXEC