Tagged Questions
0
votes
1answer
516 views
Problem storing a hash in DB using Storable::nfreeze in Perl
I want to insert a hash in the db using Storable::nfreeze but the data is not inserted properly.
My code is as follows:
%rec=();
$rec{'name'} = 'my name';
$rec{'address'} = 'my address';
my $order1 ...