Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^3: Populating an array via a DBI call - simplified

by runrig (Abbot)
on Mar 29, 2017 at 20:56 UTC ( [id://1186436]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Populating an array via a DBI call - simplified
in thread Populating an array via a DBI call - simplified

If you don't really need the entire list of results in an array, you can just fetch one at a time like so:
my $sth = $dbh->prepare($sql); $sth->execute(); $sth->bind_col( 1, \my $user_name ); while ( $sth->fetch() ) { print "$user_name\n"; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-26 05:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found