X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FSQLite.pm;h=e405eac4c65f1779e4757dafbb3a414d20760727;hb=eb49d4e3edc9c959f22593a9f4d379c31ed78538;hp=24bb0454f343ae40d51e34a4eb885e416637269c;hpb=daec44b85cffd777869c9652273670b27625e167;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK/Auto/SQLite.pm b/lib/DBIx/Class/PK/Auto/SQLite.pm index 24bb045..e405eac 100644 --- a/lib/DBIx/Class/PK/Auto/SQLite.pm +++ b/lib/DBIx/Class/PK/Auto/SQLite.pm @@ -8,17 +8,21 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); sub last_insert_id { - return $_[0]->storage->dbh->func('last_insert_rowid'); + return $_[0]->result_source->storage->dbh->func('last_insert_rowid'); } 1; =head1 NAME -DBIx::Class::PK::Auto::SQLite - Automatic Primary Key class for SQLite +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. @@ -32,4 +36,3 @@ Matt S. Trout You may distribute this code under the same terms as Perl itself. =cut -