Patches from Andreas Hartmeier applied to PK::Auto
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto.pm
CommitLineData
b8e1e21f 1package DBIx::Class::PK::Auto;
2
773e3015 3#use base qw/DBIx::Class::PK/;
4use base qw/DBIx::Class/;
b8e1e21f 5use strict;
6use warnings;
7
34d52be2 8=head1 NAME
9
10DBIx::Class::PK::Auto - Automatic Primary Key class
11
12=head1 SYNOPSIS
13
14=head1 DESCRIPTION
15
16This class overrides the insert method to get automatically
17incremented primary keys.
18
7624b19f 19You don't want to be using this directly - instead load the appropriate
20one for your database, e.g. PK::Auto::SQLite
21
c8f4b52b 22=head1 LOGIC
23
24PK::Auto does this by letting the database assign the primary key field
25and fetching the assigned value afterwards.
26
34d52be2 27=head1 METHODS
28
130c6439 29=head2 insert
34d52be2 30
31Overrides insert so that it will get the value of autoincremented
32primary keys.
33
34=cut
35
b8e1e21f 36sub insert {
37 my ($self, @rest) = @_;
147dd158 38 my $ret = $self->next::method(@rest);
0675cd04 39
40 # if all primaries are already populated, skip auto-inc
41 my $populated = 0;
9a15732e 42 map { $populated++ if defined $self->get_column($_) } $self->primary_columns;
103647d5 43 return $ret if ( $populated == scalar $self->primary_columns );
0675cd04 44
b8e1e21f 45 my ($pri, $too_many) =
103647d5 46 (grep { $self->column_info($_)->{'auto_increment'} }
47 $self->primary_columns)
48 || $self->primary_columns;
78bab9ca 49 $self->throw( "More than one possible key found for auto-inc on ".ref $self )
b8e1e21f 50 if $too_many;
c1d23573 51 unless (defined $self->get_column($pri)) {
78bab9ca 52 $self->throw( "Can't auto-inc for $pri on ".ref $self.": no _last_insert_id method" )
126042ee 53 unless $self->can('last_insert_id');
54 my $id = $self->last_insert_id;
78bab9ca 55 $self->throw( "Can't get last insert id" ) unless $id;
b8e1e21f 56 $self->store_column($pri => $id);
57 }
58 return $ret;
59}
60
130c6439 61=head2 sequence
97cc0025 62
63Manually define the correct sequence for your table, to avoid the overhead
64associated with looking up the sequence automatically.
65
66=cut
67
68__PACKAGE__->mk_classdata('sequence');
69
b8e1e21f 701;
34d52be2 71
34d52be2 72=head1 AUTHORS
73
daec44b8 74Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 75
76=head1 LICENSE
77
78You may distribute this code under the same terms as Perl itself.
79
80=cut
81