- or download this
my $array_ref = $select->fetchall_arrayref();
- or download this
..$select->fetchrow_array
- or download this
my $array_ref = $select->fetchall_arrayref([0]);
- or download this
# instead of
my $array_ref = $select->fetchall_arrayref();
# try
my $array_ref = $select->fetchall_arrayref;
- or download this
fetchall_arrayref
$tbl_ary_ref = $sth->fetchall_arrayref;
$tbl_ary_ref = $sth->fetchall_arrayref( $slice );
$tbl_ary_ref = $sth->fetchall_arrayref( $slice, $max_rows );