in reply to Re^2: DBM::Deep Problem
in thread DBM::Deep Problem
Yes. This is ugly. This weird sysntax is caused by the tie-mechanism, which cannot handle deep structures.my %h = %{$db->{hash}}; #get hash from db $h{key}->[0]=99; #alter value $db->{hash} = \%h; #put hash back in print $db->{hash}->{key}->[0]; #99
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: DBM::Deep Problem
by merlyn (Sage) on May 18, 2005 at 12:27 UTC | |
|
Re^4: DBM::Deep Problem
by travisbickle34 (Beadle) on May 18, 2005 at 08:58 UTC |