PK::Auto doc patch from dwc
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / PK / Auto / SQLite.pm
index 9a526a5..8c83cff 100644 (file)
@@ -3,8 +3,12 @@ package 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/);
+
+sub last_insert_id {
+  return $_[0]->storage->dbh->func('last_insert_rowid');
 }
 
 1;
@@ -15,13 +19,17 @@ 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');
+
 =head1 DESCRIPTION
 
 This class implements autoincrements for SQLite.
 
 =head1 AUTHORS
 
-Matt S. Trout <perl-stuff@trout.me.uk>
+Matt S. Trout <mst@shadowcatsystems.co.uk>
 
 =head1 LICENSE