QuoteFetches the next row of data and returns it as a list containing the field values.
1234
my @array = (); while(my $row = $sth->fetchrow_arrayref) { push @array, $row; }