- or download this
while(my $rr = $sth->fetchrow_hashref()) {
print "$_: $rr->{$_}\n" for keys %$rr;
}
- or download this
while(my @rows = $sth->fetchrow_array()) {
print "Values: @rows\n";
}
- or download this
while(my @rows = $sth->fetchrow_array()) {
print "$_: $rows\n" for @rows;
}