in reply to perl DBI question about fetchrow_arrayref()
my $ary = $dbh->selectall_arrayref($sth_or_stmt); -or- my $ary = $dbh->selectall_arrayref($sth_or_stmt, undef, @bind_values); for (@$ary) { print "@{$_}\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: perl DBI question about fetchrow_arrayref()
by lightoverhead (Pilgrim) on Apr 25, 2010 at 19:07 UTC | |
by ikegami (Patriarch) on Apr 25, 2010 at 19:35 UTC | |
by runrig (Abbot) on Apr 25, 2010 at 23:06 UTC |