| DBD-SQLite-Amalgamation documentation | Contained in the DBD-SQLite-Amalgamation distribution. |
DBD::SQLite::Amalgamation - Single C-file based DBD::SQLite distribution
use DBI;
my $dbh = DBI->connect("dbi:SQLite:dbname=dbfile","","");
This module is nothing but a stub for an experimental way to distribute Matt Sergeant's DBD::SQLite, using the concatenated C files (the amalgamation) as provided by the SQLite Consortium.
As of version 3.5.8, the FTS3 full-text search engine is now built by default.
DBD::SQLite, where this module is derived from.
Audrey Tang <cpan@audreyt.org>
The author disclaims copyright to this source code. In place of a legal notice, here is a blessing:
May you do good and not evil.
May you find forgiveness for yourself and forgive others.
May you share freely, never taking more than you give.
| DBD-SQLite-Amalgamation documentation | Contained in the DBD-SQLite-Amalgamation distribution. |
package DBD::SQLite::Amalgamation; use 5.006; use strict; use warnings; use version;our $VERSION = qv('3.6.1.2'); use DBD::SQLite; 1; __END__