X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FPg.pm;h=1ad32b6a788a29412f842e981e282cdbfa123b4d;hb=a2bd379666d729133d65c85dc775627937084b18;hp=3452caebfd2e89a946c3bfac57a6e937f70b82ab;hpb=5d5673023a6c1a0186e84c9e13dd02c5cb6e327e;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK/Auto/Pg.pm b/lib/DBIx/Class/PK/Auto/Pg.pm index 3452cae..1ad32b6 100644 --- a/lib/DBIx/Class/PK/Auto/Pg.pm +++ b/lib/DBIx/Class/PK/Auto/Pg.pm @@ -1,4 +1,5 @@ -package DBIx::Class::PK::Auto::Pg; +package # hide package from pause + DBIx::Class::PK::Auto::Pg; use strict; use warnings; @@ -7,44 +8,25 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id { - my $self=shift; - $self->get_autoinc_seq unless $self->{_autoinc_seq}; - $self->storage->dbh->last_insert_id(undef,undef,undef,undef, - {sequence=>$self->{_autoinc_seq}}); -} - -sub get_autoinc_seq { - my $self=shift; - my $dbh= $self->storage->dbh; - my $sth = $dbh->column_info( undef, undef, $self->_table_name, '%'); - while (my $foo = $sth->fetchrow_arrayref){ - if(defined $foo->[12] && $foo->[12] =~ /^nextval/) { - ($self->{_autoinc_seq}) = $foo->[12] =~ - m!^nextval\('"?([^"']+)"?'::text\)!; - } - } -} - 1; -=head1 NAME - -DBIx::Class::PK::Auto::SQLite - Automatic Primary Key class for SQLite +__END__ -=head1 SYNOPSIS +=head1 NAME -=head1 DESCRIPTION +DBIx::Class::PK::Auto::Pg - (DEPRECATED) Automatic primary key class for Pg -This class implements autoincrements for SQLite. - -=head1 AUTHORS +=head1 SYNOPSIS -Matt S. Trout +Just load PK::Auto instead; auto-inc is now handled by Storage. -=head1 LICENSE +=head1 FURTHER QUESTIONS? -You may distribute this code under the same terms as Perl itself. +Check the list of L. -=cut +=head1 COPYRIGHT AND LICENSE +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L.