in reply to Re: Which DBM implementation?
in thread Which DBM implementation?
When I step through the above dbmopen with perl -d it goes into:$FILENAME = "/blah/blah/test" dbmopen %HASH, $FILENAME, 0666 or die; foreach $key (sort keys %HASH) { print $key, ' = ', $HASH{$key}, "\n"; } dbmclose %HASH;
|
|---|