X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSQLite.pm;h=091b5e7be9d436b7ad9cca8c710bd98ce247461e;hb=2486df86df6c28d8305ae777acdac19ba6faebcf;hp=e6175b508922d54989ce860328fbbc66a5b17b55;hpb=34470972fbb715106e4990bab61871498dae979f;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index e6175b5..091b5e7 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLite.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLite.pm @@ -3,7 +3,7 @@ package DBIx::Class::Storage::DBI::SQLite; use strict; use warnings; -use base qw/DBIx::Class::Storage::DBI/; +use base qw/DBIx::Class::Storage::DBI::MultiDistinctEmulation/; sub last_insert_id { return $_[0]->dbh->func('last_insert_rowid'); @@ -11,14 +11,14 @@ sub last_insert_id { 1; -=head1 NAME +=head1 NAME DBIx::Class::PK::Auto::SQLite - Automatic primary key class for SQLite =head1 SYNOPSIS # In your table classes - __PACKAGE__->load_components(qw/PK::Auto::SQLite Core/); + __PACKAGE__->load_components(qw/PK::Auto Core/); __PACKAGE__->set_primary_key('id'); =head1 DESCRIPTION