- or download this
do {
my $row = $_read_sth->fetchrow_arrayref();
print Dumper $row;
} while ($_read_sth->{syb_more_results});
- or download this
while (my $row = $_read_sth->fetchrow_arrayref()) {
print Dumper $row;
}
- or download this
do {
while (my $row = $sth->$_read_sth->fetchrow_arrayref()) {
print Dumper $row;
}
} while ($_read_sth->{syb_more_results});