in reply to Re^2: MLDMB Problem
in thread MLDBM Problem
The code:
Something else interesting: If I set a breakpoint on the last line and run it straight to there, I get the error about Dumper.pm. If I step through the tie statement with the debugger, I don't get the error. WTF? In that case the debugger lists type = exception for both $dbh and %records.use strict; use MLDBM qw(DB_File); my $db = 'data_db'; my %records; my $dbh = tie %records, 'MLDBM', $db or die $!; my $junk = 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: MLDMB Problem
by graff (Chancellor) on Aug 09, 2008 at 17:21 UTC | |
by cormanaz (Deacon) on Aug 09, 2008 at 17:46 UTC |