in reply to Re: Re: NDBM_File won't store data
in thread NDBM_File won't store data
If this shows only keys, try it with the other database 'type'.#read tie %test, "NDBM_File", 'mtime', O_RDWR|O_EXCL, 0644; foreach (keys %test) { print "$_: $test{$_}\n"; } untie %test;
If the 'type' db is storing strings OK but the 'mtime' db is not, I give up !#read tie %test, "NDBM_File", 'type', O_RDWR|O_EXCL, 0644; foreach (keys %test) { print "$_: $test{$_}\n"; } untie %test;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: NDBM_File won't store data
by HamNRye (Monk) on Aug 29, 2003 at 21:52 UTC |