X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSQLite.pm;h=7fada30a4fcaca0e05c104f0ffd0fdbb63f007fa;hb=e2db8319f8e463bc3136e4aec9372a1e8305ac26;hp=a4aeff6491a80f014c9d1e5668e988b8726d14cd;hpb=f9dc732bf73b8913b9e37bf9963a57e61e3eb29f;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index a4aeff6..7fada30 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLite.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLite.pm @@ -6,7 +6,7 @@ use POSIX 'strftime'; use File::Copy; use File::Spec; -use base qw/DBIx::Class::Storage::DBI::MultiDistinctEmulation/; +use base qw/DBIx::Class::Storage::DBI/; sub _dbh_last_insert_id { my ($self, $dbh, $source, $col) = @_; @@ -45,6 +45,8 @@ sub backup return $backupfile; } +sub datetime_parser_type { return "DateTime::Format::SQLite"; } + 1; =head1 NAME