in reply to appending an array to a hash
my @row; my %hash; while (@row = $sth5->fetchrow_array) { $hash{$row[0]} = \@row; }
Hot Pastramimy %hash; while (my @row = $sth5->fetchrow_array) { $hash{$row[0]} = \@row; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: appending an array to a hash
by merlyn (Sage) on Mar 22, 2001 at 02:44 UTC | |
|
Re: Re: appending an array to a hash
by Anonymous Monk on Mar 22, 2001 at 03:10 UTC | |
by Hot Pastrami (Monk) on Mar 22, 2001 at 03:22 UTC | |
by dkubb (Deacon) on Mar 22, 2001 at 09:00 UTC | |
by Anonymous Monk on Mar 23, 2001 at 01:19 UTC | |
by Anonymous Monk on Mar 22, 2001 at 16:54 UTC | |
by Anonymous Monk on Mar 22, 2001 at 20:13 UTC |