talk2kvj has asked for the wisdom of the Perl Monks concerning the following question:
use DB_File; use CGI; use DirHandle; use FileHandle; dbmopen(%TEST, "/home/lab/history.db", 0666) or die "Can't open histor +y file: $!"; while (($key,$val) = each %TEST) { print $key, ' = ', unpack('L',$val), "\n"; } dbmclose(%TEST);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problem with DB_FILE
by pfaut (Priest) on Jun 03, 2004 at 23:25 UTC | |
|
Re: problem with DB_FILE
by hsinclai (Deacon) on Jun 04, 2004 at 04:28 UTC |