Hello,
I saw this block of code from:
Could anybody tell me what does "=>" mean?
and where I can find more explaination of it?
I can not find help from oracle PL/SQL book.
Thank you.
procedure generate_md5
(
p_username in varchar2,
p_password in varchar2,
p_md5key out md5type
)
is
begin
dbms_obfuscation_toolkit.md5
(
input => utl_raw.cast_to_raw(p_username||p_password),
checksum => p_md5key
);
end generate_md5;
I saw this block of code from:
Could anybody tell me what does "=>" mean?
and where I can find more explaination of it?
I can not find help from oracle PL/SQL book.
Thank you.
procedure generate_md5
(
p_username in varchar2,
p_password in varchar2,
p_md5key out md5type
)
is
begin
dbms_obfuscation_toolkit.md5
(
input => utl_raw.cast_to_raw(p_username||p_password),
checksum => p_md5key
);
end generate_md5;