Added tests for insert_or_update, moved Auto test to own file
[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
6sub _last_insert_id {
7 return $_[0]->_get_dbh->func('last_insert_rowid');
8}
9
101;
34d52be2 11
12=head1 NAME
13
14DBIx::Class::PK::Auto::SQLite - Automatic Primary Key class for SQLite
15
16=head1 SYNOPSIS
17
18=head1 DESCRIPTION
19
20This class implements autoincrements for SQLite.
21
22=head1 AUTHORS
23
24Matt S. Trout <perl-stuff@trout.me.uk>
25
26=head1 LICENSE
27
28You may distribute this code under the same terms as Perl itself.
29
30=cut
31