in reply to DBI::fetchall_arrayref() error
It looks like a bug in the DBI to me.
$sth->{PrintError} =0; while ( my $rows= $sth->fetchall_arrayref([0],3) and !$sth->err ) { for (@$rows) { print "got @$_\n"; } print "---\n"; } [download]