- or download this
foreach $key (@keys) {
$sth->execute($key);
$columns_ref = $sth->fetchrow_arrayref();
push(@entries, [@$columns_ref]);
}
- or download this
foreach $key (@keys) {
$sth->execute($key);
my $columns_ref = $sth->fetchrow_arrayref();
push(@entries, $columns_ref);
}