X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FMySQL.pm;h=10fbfd65349db14e617bdff7cbd5372a20dc6f14;hb=a2bd379666d729133d65c85dc775627937084b18;hp=bd253f05ab9e52279ba2937327313a618fff8084;hpb=7624b19f7173b34800a973f281f6a5d4344f67e6;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK/Auto/MySQL.pm b/lib/DBIx/Class/PK/Auto/MySQL.pm index bd253f0..10fbfd6 100644 --- a/lib/DBIx/Class/PK/Auto/MySQL.pm +++ b/lib/DBIx/Class/PK/Auto/MySQL.pm @@ -1,4 +1,5 @@ -package DBIx::Class::PK::Auto::MySQL; +package # hide package from pause + DBIx::Class::PK::Auto::MySQL; use strict; use warnings; @@ -7,29 +8,25 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id { - return $_[0]->storage->dbh->{mysql_insertid}; -} - 1; -=head1 NAME - -DBIx::Class::PK::Auto::MySQL - Automatic Primary Key class for MySQL +__END__ -=head1 SYNOPSIS +=head1 NAME -=head1 DESCRIPTION +DBIx::Class::PK::Auto::MySQL - (DEPRECATED) Automatic primary key class for MySQL -This class implements autoincrements for MySQL. - -=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.