X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSQLite.pm;h=f7977bb577f4b309023382763e17b4ed9eef1995;hb=ec0946db9da3886dce995f30240dbd405ee4c74d;hp=e29c2ee8faec08ab0e51540bd7ae57b77bd8b70c;hpb=12c9beeade5453c5a867406f30384a22e2f1b82d;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index e29c2ee..f7977bb 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLite.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLite.pm @@ -2,17 +2,14 @@ package DBIx::Class::Storage::DBI::SQLite; use strict; use warnings; + +use base qw/DBIx::Class::Storage::DBI/; +use mro 'c3'; + use POSIX 'strftime'; use File::Copy; use File::Spec; -use base qw/DBIx::Class::Storage::DBI::MultiDistinctEmulation/; - -sub _dbh_last_insert_id { - my ($self, $dbh, $source, $col) = @_; - $dbh->func('last_insert_rowid'); -} - sub backup { my ($self, $dir) = @_; @@ -45,20 +42,23 @@ sub backup return $backupfile; } -sub disconnect { +sub deployment_statements { + my $self = shift;; + my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_; - # As described in this node http://www.perlmonks.org/?node_id=666210 - # there seems to be no sane way to ->disconnect a SQLite database with - # cached statement handles. As per mst we just zap the cache and - # proceed as normal. + $sqltargs ||= {}; - my $self = shift; - if ($self->connected) { - $self->_dbh->{CachedKids} = {}; - $self->next::method (@_); - } + my $sqlite_version = $self->_get_dbh->{sqlite_version}; + + # numify, SQLT does a numeric comparison + $sqlite_version =~ s/^(\d+) \. (\d+) (?: \. (\d+))? .*/${1}.${2}/x; + + $sqltargs->{producer_args}{sqlite_version} = $sqlite_version; + + $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest); } +sub datetime_parser_type { return "DateTime::Format::SQLite"; } 1; @@ -69,7 +69,7 @@ DBIx::Class::Storage::DBI::SQLite - Automatic primary key class for SQLite =head1 SYNOPSIS # In your table classes - __PACKAGE__->load_components(qw/PK::Auto Core/); + use base 'DBIx::Class::Core'; __PACKAGE__->set_primary_key('id'); =head1 DESCRIPTION