AUTHORS mass update; mst doesn't have to take credit for -everything- :)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / SQLite.pm
index 98d1c07..3bc5c5e 100644 (file)
@@ -1,10 +1,29 @@
-package DBIx::Class::PK::Auto::SQLite;
+package # hide package from pause
+  DBIx::Class::PK::Auto::SQLite;
 
 use strict;
 use warnings;
 
-sub _last_insert_id {
-  return $_[0]->_get_dbh->func('last_insert_rowid');
-}
+use base qw/DBIx::Class/;
+
+__PACKAGE__->load_components(qw/PK::Auto/);
 
 1;
+
+=head1 NAME
+
+DBIx::Class::PK::Auto::SQLite - (DEPRECATED) Automatic primary key class for SQLite
+
+=head1 SYNOPSIS
+
+Just load PK::Auto instead; auto-inc is now handled by Storage.
+
+=head1 AUTHOR AND CONTRIBUTORS
+
+See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut