in reply to What way to weigh an AoA?
0..$$#user seems to go far higher than I'm expectingI think you're looking for just 0 .. $#$user
You might prefer (hash keys are much more meaningful to read than array indices) the way this then looks:my $users = $db_ref->selectall_arrayref("SELECT last_name, first_name +from user", {Slice=>{}}) or die "$!\n";
printf "%s, %s\n", $user->[$_]->{last_name}, $user->[$_]->{first_name} + for 0..5; printf "%s, %s\n", @{$user->[$_]}{ qw/last_name first_name/ } for 0..5 +; # using a hash slice # or, if going through all rows: printf "%s, %s\n", $_->{last_name}, $_->{first_name} for @$user; printf "%s, %s\n", @{$_}{ qw/last_name first_name/ } for @$user;
|
|---|