Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> MD5 Error PLS-00307: too many declarations of 'MD5' match this call
Hi
I am trying to write an equilevent PLSQL function fro MD5 equlievent to the mysql function. When I try to compile the function below I get
PLS-00307: too many declarations of 'MD5' match this call
function MD5(str varchar2)
RETURN VARCHAR2 IS md_str VARCHAR2(16);
BEGIN md_str := dbms_obfuscation_toolkit.md5(str);
return md_str;
END; Any ideas what I am doing wrong
Thanks
Kev Received on Thu Feb 20 2003 - 03:41:29 CST
![]() |
![]() |