First pass at SQLite support. Have everything through t/18 passing with all three...
[dbsrgits/DBM-Deep.git] / lib / DBM / Deep.pm
index 1ae5d39..fdb20d6 100644 (file)
@@ -5,17 +5,13 @@ use 5.006_000;
 use strict;
 use warnings FATAL => 'all';
 
-our $VERSION = q(1.0015);
+our $VERSION = q(1.0019_002);
 
 use Scalar::Util ();
 
 use DBM::Deep::Engine::DBI ();
 use DBM::Deep::Engine::File ();
 
-use DBM::Deep::SQL::Util;
-use DBM::Deep::SQL::Array;
-use DBM::Deep::SQL::Hash;
-
 use overload
     '""' => sub { overload::StrVal( $_[0] ) },
     fallback => 1;