Skip Menu |

This queue is for tickets about the DBD-SQLite CPAN distribution.

Report information
The Basics
Id: 7387
Status: resolved
Priority: 0/
Queue: DBD-SQLite

People
Owner: Nobody in particular
Requestors: mjs [...] beebo.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.03
Fixed in: (no value)



Subject: $sth->execute(undef) gives warning
DBD::SQLite emits a "Use of uninitialized value in subroutine entry" error if undef is passed as an argument to execute(): my $dbh = DBI->connect("DBI:SQLite:dbname=test"); my $sth = $dbh->prepare("select ?"); $sth->execute(undef); # emits warning