X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FSQLite.pm;h=e98f7f08b22487c452311fdf9fd859739af0b50b;hb=534521dac62f6ab58e83a42d4e8e3cb586db464b;hp=f761bc0e19ca2c2864db29a8a0db460b247118d2;hpb=66d9ef6bf10ccbdc9391e81e5b1ad1b615fb67f7;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/PK/Auto/SQLite.pm b/lib/DBIx/Class/PK/Auto/SQLite.pm index f761bc0..e98f7f0 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,25 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id { - return $_[0]->result_source->storage->dbh->func('last_insert_rowid'); -} - 1; -=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__->set_primary_key('id'); +__END__ -=head1 DESCRIPTION +=head1 NAME -This class implements autoincrements for SQLite. +DBIx::Class::PK::Auto::SQLite - (DEPRECATED) Automatic primary key class for SQLite -=head1 AUTHORS +=head1 SYNOPSIS -Matt S. Trout +Just load PK::Auto instead; auto-inc is now handled by Storage. -=head1 LICENSE +=head1 FURTHER QUESTIONS? -You may distribute this code under the same terms as Perl itself. +Check the list of L. -=cut +=head1 COPYRIGHT AND LICENSE +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L.