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