in reply to Re: SQLite Documentation
in thread SQLite Documentation
Wow, do I feel stupid. I completely missed that :) The following replicates his problem (along with the error message):
my $sql = "SELECT * FROM foo"; my $sth = $dbh->prepare($sql) || die "Couldn't prepare $sql: $DBI::err +str"; while ( my @row = $sth->fetchrow_array ) { print "@row\n"; }
This appears to be a bug in the error reporting.
Cheers,
Ovid
New address of my CGI Course.
Silence is Evil (feel free to copy and distribute widely - note copyright text)
In Section
Seekers of Perl Wisdom