Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> MD5 Error PLS-00307: too many declarations of 'MD5' match this call

MD5 Error PLS-00307: too many declarations of 'MD5' match this call

From: Kev Baker <kev_at_wwwatt.co.uk>
Date: 20 Feb 2003 01:41:29 -0800
Message-ID: <5cfa3578.0302200141.4005872d@posting.google.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US