Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: What way to weigh an AoA?

by davidrw (Prior)
on May 17, 2006 at 00:35 UTC ( [id://549924]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $users = $db_ref->selectall_arrayref("SELECT last_name, first_name 
    +from user", {Slice=>{}}) or die "$!\n";
    
  2. or download this
    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;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://549924]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (9)
As of 2024-04-23 10:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found