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

Re: Ordering return from fetchrow_hashref

by gmax (Abbot)
on Mar 02, 2004 at 17:18 UTC ( [id://333308]=note: print w/replies, xml ) Need Help??


in reply to Ordering return from fetchrow_hashref

tye has shown you one way. However, let me question the reasons for wanting what you are asking

Hashes are data structures where you can access elements by name rather than by position, as you do with arrays. Therefore a sorted hash is a contradiction. (Although Perl Tie mechanism can change something)

Now, I see two reasons for wanting the result from a query in a hash:

  • When you want to access your columns by name
  • When you want to process (e.g. display) your column names with their values.

In the first case, you don't really need a sorted hash, since you are using the hash names hardcoded in your application, so that the application itself will set the order. For example

while (my $rec = $sth->fetchrow_hashref()) { print $rec->{xy}, $rec->{xz}, $rec->{yz}; }

If you need to process your columns according to a list of column names, here is a slight variation on tye's answer:

while (my $row = $sth->fetchrow_hashref()) { print map( { "$_ => $row->{$_}\t"} @{$sth->{NAME}}), "\n"; } #or while (my $row = $sth->fetchrow_hashref()) { for (@{$sth->{NAME}}) { print "$_ => $row->{$_}\t"; } print "\n"; }

If you just want to use the column names together with their values, then you can use two different methods, according to your needs:

while (my $row = $sth->fetchrow_arrayref()) { # arrayref, not hash my $index = 0; print "$_ => ", $row->[$index++], "\t" for (@{$sth->{NAME}}); print "\n"; } # or the "C like" way while (my $row = $sth->fetchrow_arrayref()) { # arrayref, not hash for (my $index = 0; $index < $sth->{NUM_OF_FIELDS}; $index++) { print "$sth->{NAME}->[$index] => ", $row->[$index], "\t" } print "\n"; }

For more ideas, tips, and caveats on the same subject, see DBI Recipes.

Update
If, as you say, you need an array of hash references, then it would be much easier this idiom:

my $aref = $sth->fetchall_arrayref({});

Notice the empty hashref passed as argument.

 _  _ _  _  
(_|| | |(_|><
 _|   

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-20 00:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found