in reply to Re: Help with storing data in a hash
in thread Help with storing data in a hash
And for this specific procedure, it only wants one day. way the store procedure in the db is.my @dates = ( '20080101', '20080102', '20080103', '20080104', '20080105', '20080 +106', '20080107', '20080108', '20080109', '20080110' );
I followed your second suggestion and that worked. I appreciate the help.foreach my $d (@dates) { %calls = &call_type( $d, $d ); } print Dumper \%calls;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Help with storing data in a hash
by samtregar (Abbot) on Jan 28, 2008 at 22:28 UTC | |
Re^3: Help with storing data in a hash
by Punitha (Priest) on Jan 29, 2008 at 04:44 UTC |