1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-09 07:08:07 -04:00

DBD-SQLite: fixed a "my" masks earlier declaration warning.

This commit is contained in:
Kenichi Ishigaki 2009-04-03 05:26:53 +00:00
parent 4ea7c29274
commit 6662ea6fff

View file

@ -9,7 +9,7 @@ my $sth = $dbh->prepare("INSERT INTO f VALUES (?, ?, ?)", { go_last_insert_id_ar
$sth->execute("Fred", "Bloggs", "fred\@bloggs.com"); $sth->execute("Fred", "Bloggs", "fred\@bloggs.com");
# $dbh->trace(4); # $dbh->trace(4);
my $sth = $dbh->prepare("SELECT * FROM f"); $sth = $dbh->prepare("SELECT * FROM f");
ok($sth); ok($sth);
ok($sth->execute); ok($sth->execute);
my $row = $sth->fetch; my $row = $sth->fetch;