16.4 DROP_CREDENTIAL Procedure
This procedure drops a credential definition.
Syntax
APEX_CREDENTIAL.DROP_CREDENTIAL (
p_credential_static_id IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_credential_static_id |
The credential static ID. |
Example
The following example drops the credential definition "OAuth Login."
BEGIN
-- first set the workspace
apex_util.set_workspace(p_workspace => 'MY_WORKSPACE');
apex_credential.drop_credential (
p_credential_static_id => 'OAUTH_LOGIN' );
END;
Parent topic: APEX_CREDENTIAL