Help for this page
# I want to write this: my @rows = @{ $dbh->selectall_arrayref($sql) }; ... my $rows_aref = $dbh->selectall_arrayref($sql) or die; print Dumper $rows_aref; my @rows = @{$rows_aref};