Subject: | segfault when executing empty statement with "do" |
Greetings,
Running DBD-SQLite-0.31
Executing $dbh->do("") segfaults perl; should probably return undef. I tried it on open of both an existing db and a new one.
$ perl -MDBD::SQLite -MDBI
my $dbh = DBI->connect("dbi:SQLite:dbname=nonexist.db") or die;
$dbh->do("");
Segmentation fault
$ perl -v
This is perl, v5.8.3 built for i386-linux-thread-multi
$ uname -a
Linux dhcppc1 2.4.22-1.2115.nptlsmp #1 SMP Wed Oct 29 15:20:01 EST 2003 i686 athlon i386 GNU/Linux
Cheers,
Dan