NAME DBD::SQLeet - SQLite3 DBI driver with optional encryption DBD::SQLeet is a combination of the DBD::SQLite CPAN module: and sqleet - public domain encryption extension for SQLite3: SYNOPSIS use DBI; my $dbh = DBI->connect("dbi:SQLeet:dbname=$dbfile","",""); $dbh->do("PRAGMA key = 'password';"); DESCRIPTION DBD::SQLeet is a complete SQLite3 DBI Driver with optional encryption. SQLite is a public domain file-based relational database engine that you can find at . DBD::SQLeet Perl code and test suite are entirely based on the DBD::SQLite v.1.58 CPAN module. The DBD::SQLeet API is a verbatim copy of the DBD::SQLite v.1.58 API. See for reference. SQLITE VERSION DBD::SQLeet is compiled with a bundled sqleet library: sqleet version 0.24.0 as of this release. DBD::SQLeet follows the sqleet versioning scheme. Version 0.24.0 of sqleet is based on SQLite v3.24.0 DIFFERENCES FROM DBD::SQLite DBD::SQLeet may not open successfully a database using the following code: my $dbh = DBI->connect("dbi:SQLite:file:$dbfile","",""); SQLite3 support for opening an URI filename is otherwise not impaired. You can use: my $dbh = DBI->connect("dbi:SQLite:uri=file:$dbfile","",""); AUTHORS Matt Sergeant Francis J. Lacoste Wolfgang Sourdeau Adam Kennedy Max Maischein Laurent Dami Kenichi Ishigaki Dimitar D. Mitov COPYRIGHT Some parts of the bundled SQLite code in this distribution is Public Domain. sqlite3.c and sqlite3.h in this distribution are part of sqleet: public domain encryption extension for SQLite3 released under the UNLICENSE license. DBD::SQLeet is copyright 2002 - 2007 Matt Sergeant. Some parts copyright 2008 Francis J. Lacoste. Some parts copyright 2008 Wolfgang Sourdeau. Some parts copyright 2008 - 2012 Adam Kennedy. Some parts copyright 2009 - 2012 Kenichi Ishigaki. Some parts derived from DBD::SQLite::Amalgamation copyright 2008 Audrey Tang. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module.