cidaris has asked for the wisdom of the Perl Monks concerning the following question:
my $sql = "SELECT * FROM test"; my $sth = $dbh->prepare($sql) || die "Couldn't prepare $sql: $sth->err +str"; + + while ( @row = $sth->fetchrow_array ) { print "@row\n"; }
2003-06-04 edit ybiC: s/pre/code/
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SQLite Documentation
by perrin (Chancellor) on Jun 04, 2003 at 21:37 UTC | |
by Ovid (Cardinal) on Jun 04, 2003 at 21:46 UTC | |
by cidaris (Friar) on Jun 05, 2003 at 14:41 UTC | |
|
Re: SQLite Documentation
by Ovid (Cardinal) on Jun 04, 2003 at 21:32 UTC |