DBD::mod_sqlite - Perl extension for mod_sqlite apache module.
use DBI; my $dbh = DBI->connect("dbi:mod_sqlite:database=/tmp/foo.txt;url=http://localhost:90/test", "user", "pass"); my $sth = $dbh->prepare("select * from test where name = ? and id = ?"); $sth->execute("Aaron", "0"); while (my $r = $sth->fetchrow_hashref()) { use Data::Dumper; print Dumper($r); }
DBD::mod_sqlite, a database driver to use with mod_sqlite.
DBD::mod_sqlite is a driver for use with a mod_sqlite database.
This database driver supports basic authentication on the web server that is running mod_sqlite, so configure your web server accordingly. Typically, this just required adding a .htaccess file on the webserver for the user you want to have access.
The latest version of DBD::mod_sqlite can be downloaded here:
http://sourceforge.net/projects/modsqlite/
None by default.
mod_sqlite: http://modsqlite.sourceforge.net SQLite: http://www.hwaci.com/sw/sqlite/
The latest version of DBD::mod_sqlite can be downloaded here:
http://sourceforge.net/projects/modsqlite/
Aaron Patterson <perlfiend@users.sourceforge.net>
Copyright 2004 by Aaron Patterson
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.