DBD::SQLite::Amalgamation - Single C-file based DBD::SQLite distribution


DBD-SQLite-Amalgamation documentation Contained in the DBD-SQLite-Amalgamation distribution.

Index


Code Index:

NAME

Top

DBD::SQLite::Amalgamation - Single C-file based DBD::SQLite distribution

SYNOPSIS

Top

  use DBI;
  my $dbh = DBI->connect("dbi:SQLite:dbname=dbfile","","");

DESCRIPTION

Top

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.

SEE ALSO

Top

DBD::SQLite, where this module is derived from.

AUTHORS

Top

Audrey Tang <cpan@audreyt.org>

COPYRIGHT

Top


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__