X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FSQLite.pm;h=6fb94951508a7dd29268ce3745700cd7d60c486f;hb=9c0df5f32b68e23c670c89ce6cdbff60b4bd0ed0;hp=8c83cff6217818dee29b5727529bf2bdeae1e66d;hpb=6718c5f0bf2bb9528c055b5974488a6d37f1209a;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK/Auto/SQLite.pm b/lib/DBIx/Class/PK/Auto/SQLite.pm index 8c83cff..6fb9495 100644 --- a/lib/DBIx/Class/PK/Auto/SQLite.pm +++ b/lib/DBIx/Class/PK/Auto/SQLite.pm @@ -1,4 +1,5 @@ -package DBIx::Class::PK::Auto::SQLite; +package # hide package from pause + DBIx::Class::PK::Auto::SQLite; use strict; use warnings; @@ -7,33 +8,22 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id { - return $_[0]->storage->dbh->func('last_insert_rowid'); -} - 1; -=head1 NAME +=head1 NAME -DBIx::Class::PK::Auto::SQLite - Automatic Primary Key class for SQLite +DBIx::Class::PK::Auto::SQLite - (DEPRECATED) Automatic primary key class for SQLite =head1 SYNOPSIS - # In your table classes - __PACKAGE__->load_components(qw/PK::Auto::SQLite Core/); - __PACKAGE__->set_primary_key('id'); - -=head1 DESCRIPTION - -This class implements autoincrements for SQLite. +Just load PK::Auto instead; auto-inc is now handled by Storage. =head1 AUTHORS -Matt S. Trout +Matt S Trout =head1 LICENSE You may distribute this code under the same terms as Perl itself. =cut -