- or download this
@$arrayRef = ();
while (my $row = $sth->fetch()) {
push @$arrayRef, $row;
}
- or download this
@$arrayRef = ();
while (my $row = $sth->fetch()) {
push @$arrayRef, [ @$row ]; # Make a copy.
}
- or download this
@$arrayRef = @{ $dbh->selectall_arrayref($stmt_or_sth) };