D
dcruncher4
we are storing binary data in an oracle table as RAW data type. Oracle
converts RAW data type into hex values at the time of storing. When I
view the data thru sqlplus I see it as hex.
Obviously it has to be converted back to original value when we fetch it.
It seems it is not happening.
use DBD::Oracle qwora_types);
$o_sth->bind_col(1,\$binvalue,{ ora_type => ORA_RAW } ) ;
when I do print $binvalue, I see it as hex only? Why?
Curiously Pro-C converts that to original form.
What am I missing?
Oracle DBD is 1.17
converts RAW data type into hex values at the time of storing. When I
view the data thru sqlplus I see it as hex.
Obviously it has to be converted back to original value when we fetch it.
It seems it is not happening.
use DBD::Oracle qwora_types);
$o_sth->bind_col(1,\$binvalue,{ ora_type => ORA_RAW } ) ;
when I do print $binvalue, I see it as hex only? Why?
Curiously Pro-C converts that to original form.
What am I missing?
Oracle DBD is 1.17