in reply to Re: building a hash from a database
in thread building a hash from a database
Hmmm... I must admit (if it is not obvious) that there a number of things about hashes that I do not understand.
What do you mean by symbolic reference to a new hash?
I have made the change that you suggested and now I get this:
$VAR1 = { '' => { '' => undef } };
What I need to be able to do later is to reference the has created like this:
foreach $key (keys %hash) { print $key, $key{'fname'}, $key{'lname'}, "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: building a hash from a database
by bart (Canon) on May 02, 2006 at 15:44 UTC | |
by bfdi533 (Friar) on May 02, 2006 at 16:20 UTC |