Updated main docs, altered mail address in POD for 0.01
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / SQLite.pm
CommitLineData
b8e1e21f 1package DBIx::Class::PK::Auto::SQLite;
2
3use strict;
4use warnings;
5
126042ee 6use base qw/DBIx::Class/;
7
8__PACKAGE__->load_components(qw/PK::Auto/);
9
10sub last_insert_id {
7c4b64e8 11 return $_[0]->storage->dbh->func('last_insert_rowid');
b8e1e21f 12}
13
141;
34d52be2 15
16=head1 NAME
17
18DBIx::Class::PK::Auto::SQLite - Automatic Primary Key class for SQLite
19
20=head1 SYNOPSIS
21
22=head1 DESCRIPTION
23
24This class implements autoincrements for SQLite.
25
26=head1 AUTHORS
27
daec44b8 28Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 29
30=head1 LICENSE
31
32You may distribute this code under the same terms as Perl itself.
33
34=cut
35