in reply to Re: Maintaining state through storable.pm?
in thread Maintaining state through storable.pm?

my %hash = (ora_types => 112, ora_field => 'data');
Rather than using the less obvious 112, this may make the code a bit more self-documenting:
use DBD::Oracle qw(:ora_types); ... my %hash = (ora_types => ORA_CLOB, ora_field => 'data');

--Dave