in reply to DBD::SQLite select syntax problem
I was wondering if I was just lucky. :-) Thanks for the link to your nice tutorial...I should have read it first....but.....:-)my $cmd = "select * from info where key=?"; $sth = $dbh->prepare($cmd); $sth->execute($key_sel); my @row; while (@row = $sth->fetchrow_array ){ print "@row\n"; my $key = $row[0]; }
|
|---|