X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FDB2.pm;h=1962d79fd5321c22f57e20305adbb51428538cb7;hb=534521dac62f6ab58e83a42d4e8e3cb586db464b;hp=29973d24fcae2d25b69008a80b694cddbf23eb24;hpb=f635959288ff2c2090c65665d404ec99c197c04b;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/PK/Auto/DB2.pm b/lib/DBIx/Class/PK/Auto/DB2.pm index 29973d2..1962d79 100644 --- a/lib/DBIx/Class/PK/Auto/DB2.pm +++ b/lib/DBIx/Class/PK/Auto/DB2.pm @@ -1,4 +1,5 @@ -package DBIx::Class::PK::Auto::DB2; +package # hide package from pause + DBIx::Class::PK::Auto::DB2; use strict; use warnings; @@ -7,18 +8,25 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id -{ - my ($self) = @_; +1; - my $dbh = $self->storage->dbh; - my $sth = $dbh->prepare_cached("VALUES(IDENTITY_VAL_LOCAL())"); - $sth->execute(); +__END__ - my @res = $sth->fetchrow_array(); +=head1 NAME - return @res ? $res[0] : undef; - -} +DBIx::Class::PK::Auto::DB2 - (DEPRECATED) Automatic primary key class for DB2 -1; +=head1 SYNOPSIS + +Just load PK::Auto instead; auto-inc is now handled by Storage. + +=head1 FURTHER QUESTIONS? + +Check the list of L. + +=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.