Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: $dbh->selectall_arrayref to simple @array

by Juerd (Abbot)
on Sep 18, 2011 at 16:04 UTC ( [id://926641]=note: print w/replies, xml ) Need Help??


in reply to $dbh->selectall_arrayref to simple @array

Why do you want an array without a reference? Arrays that are accessed by references can do exactly the same things, only the syntax is a bit different.

By the way, consider DBIx::Simple, which allows you to do:

my @emps = $db->query("SELECT ename FROM emp ORDER BY ename")->flat; foreach my $emp (@emps) { ... }
"flat" means: take all results and return them as one flat list.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-03-19 08:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found