From 6662ea6fffd8627afe87f009f0ec504b79d93329 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Fri, 3 Apr 2009 05:26:53 +0000 Subject: [PATCH] DBD-SQLite: fixed a "my" masks earlier declaration warning. --- t/04select.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/04select.t b/t/04select.t index f2a5209..3d3b8b3 100644 --- a/t/04select.t +++ b/t/04select.t @@ -9,7 +9,7 @@ my $sth = $dbh->prepare("INSERT INTO f VALUES (?, ?, ?)", { go_last_insert_id_ar $sth->execute("Fred", "Bloggs", "fred\@bloggs.com"); # $dbh->trace(4); -my $sth = $dbh->prepare("SELECT * FROM f"); +$sth = $dbh->prepare("SELECT * FROM f"); ok($sth); ok($sth->execute); my $row = $sth->fetch;