in reply to Re^4: Writing Multiple Recordsets into a CSV file
in thread Writing Multiple Recordsets into a CSV file

Are you sure that $_read_sth->{syb_more_results} is defined (or even exists)? Try
while( my $row = $_read_sth->fetchrow_arrayref() ) { print Dumper $row; }
--
Andreas