in reply to A bug in DBD::CSV?
Hi Evan,
Change:
to:while( defined ( my @row = $sth->fetchrow_array ) ) {
and an endless loop problem is fixed.while( my @row = $sth->fetchrow_array ) {
I didn't have time to investigate on this one, though it would be interesting to do.my $dbh = DBI->connect('DBI:CSV:f_dir=.;csv_quote_char=~;') or die .. +.
|
|---|