Subject: | DBD::CVS no longer works |
Using DBD::CVS and SQL::STATEMENT 1.14 the following Statements are producing an empty array:
my $sth = $dbh->prepare("SELECT count(*) FROM CUSTOMER WHERE NAME = ? AND SURENAME = ?");
unless ($sth->execute($3,$2)) {
unless ($aref = $sth->fetchrow_arrayref()) {
# You get here an empty array aref with is an error
It worked with 1.09 (may be later too, didn't test it)
The same Statements with MysqlPP and SQLite are working correct in version 1.14.
Thanks for any hints.
Steven