From: Uri Guttman
>> "pp" == philge philip writes:
>
> pp> is it possible to change values of my hash "%position_counts"
> pp> stored in the file without retrieving it back using "fd_retrieve"?
>
> pp> if its not possible can you tell me how to store a huge hash data
> pp> to a file or d
> "pp" == philge philip writes:
pp> is it possible to change values of my hash "%position_counts"
pp> stored in the file without retrieving it back using "fd_retrieve"?
pp> if its not possible can you tell me how to store a huge hash data
pp> to a file or dbm and edit it without retr
philge philip wrote:
hi
Hello,
in the below script:
use Storable qw(store_fd fd_retrieve);
my %position_counts = ('name' => 'rahul');
open(OUT1, ">temp.txt");
store_fd(\%position_counts, *OUT1) || die "can't store to temp.txt\n";
close(OUT1);
is it possible to change values of my hash
Hi,
On Saturday 19 Jun 2010 12:56:36 philge philip wrote:
> hi
>
>
> in the below script:
>
> use Storable qw(store_fd fd_retrieve);
>
A few notes about your code. Please go over:
http://perl.net.au/wiki/Freenode_Sharp_Perl_FAQ
And:
http://www.perlfoundation.org/perl5/index.cgi?ancient_per