joec_ has asked for the wisdom of the Perl Monks concerning the following question:

UPDATE: RESOLVED BY REMOVING ora_type=>NUMBER AND SETTING SIZE to 65536

Hi

I have a function call in PLSQL that looks like

begin :value = myFunction(1,2,3); end;
The function should return the number 115. When i try this code
$sth->bind_param_inout(":value",\$val,0,{ora_type=ORA_NUMBER}) $sth->execute; print $val;
I get a funny symbol.

I am obviously missing something ... Any ideas?

Thanks--Joe

-----

Eschew obfuscation, espouse elucidation!