First pass at SQLite support. Have everything through t/18 passing with all three...
[dbsrgits/DBM-Deep.git] / lib / DBM / Deep.pm
index bf507fc..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;
@@ -379,6 +375,11 @@ sub clone {
     );
 }
 
+sub supports {
+    my $self = shift;
+    return $self->_engine->supports( @_ );
+}
+
 #XXX Migrate this to the engine, where it really belongs and go through some
 # API - stop poking in the innards of someone else..
 {