This procedure sets username and password for a given credential. This is typically be used by a security person after application import, and allows to separate responsibilities between a person importing the application and another person storing the credentials.
Syntax
procedure set_persistent_credentials( p_credential_static_id in varchar2, p_username in varchar2, p_password in varchar2 );
Parameters
Table 8-3 SET_PERSISTENT_CREDETIALS Procedure Signature 2 Parameters
Parameters | Description |
---|---|
|
The credential static ID. |
|
The credential username. |
|
The credential password. |
Example
The following example sets credential Login
.
begin apex_credential.set_persistent_credentials ( p_credential_static_id => 'Login', p_username => 'scott', p_password => 'tiger ); end;
Parent topic: APEX_CREDENTIAL