Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: DBI returning mysql columns in strange order.

by cchampion (Curate)
on Oct 09, 2003 at 18:53 UTC ( [id://298139]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: DBI returning mysql columns in strange order.
in thread DBI returning mysql columns in strange order.

Wrong.

That won't solve the problem, which is the order of columns returned from a hash, not the order of records in a data set.

Since column order seems to be important, a good piece of advice would be usine specific column names (as dragonchild said) in the select statement, and fetching records with fetchrow_arrayref.

If a hash is also needed, then it must be integrated by a list of columns.

Consider this (untested) example.

my @columns = (qw(col1 col2 col3)); my $query = "SELECT " . join (",", @columns) . " FROM tablename"; my $sth = $dbh->prepare($query); $sth->execute; while (my $href = $sth->fetchrow_hashref) { for (@columns) { print "$_ => $href->{$_}\n"; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://298139]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.