X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK%2FAuto%2FDB2.pm;h=b30a9ff7ac69aa107394572f7ff74f4d094647d8;hb=d29565e0c545871399b0732e7781ea445e7d5b8c;hp=a9732d546ed200bd62af5ebdb4e5dae041dce2b3;hpb=66d9ef6bf10ccbdc9391e81e5b1ad1b615fb67f7;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK/Auto/DB2.pm b/lib/DBIx/Class/PK/Auto/DB2.pm index a9732d5..b30a9ff 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,22 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto/); -sub last_insert_id -{ - my ($self) = @_; +1; - my $dbh = $self->result_source->storage->dbh; - my $sth = $dbh->prepare_cached("VALUES(IDENTITY_VAL_LOCAL())"); - $sth->execute(); +=head1 NAME - my @res = $sth->fetchrow_array(); +DBIx::Class::PK::Auto::DB2 - (DEPRECATED) Automatic primary key class for DB2 - return @res ? $res[0] : undef; - -} +=head1 SYNOPSIS -1; +Just load PK::Auto instead; auto-inc is now handled by Storage. + +=head1 AUTHORS + +Matt S Trout + +=head1 LICENSE + +You may distribute this code under the same terms as Perl itself. + +=cut