- or download this
while (my $row = $sth->fetch_arrayref()) {
...
}
- or download this
my $rows = $sth->fetchall_arrayref();
my $num_rows = @$rows;
foreach my $row (@$rows) {
...
}
- or download this
my $rows = $sth->fetchall_arrayref();
my $num_rows = @$rows;
...
while (my $row = $sponge_sth->fetch_arrayref()) {
...
}