in reply to Re: fetchall_arrayref with slice and row count
in thread fetchall_arrayref with slice and row count
See the DBI documentation: the last possible fetch in a fetchall will call $sth->finish.while ( $sth->{Active} and $rowcache=$sth->fetchall_arrayref({}, $max_rows) ) { ... }
|
|---|