- or download this
my $dbh = DBI->connect("dbi:SQLite:dbname=$dbfile","","");
- or download this
$sth = $dbh->prepare("SELECT foo, bar FROM table WHERE baz=?");
- or download this
$sth->execute( $baz );
while ( @row = $sth->fetchrow_array ) {
print "@row\n";
}