1 package DBIx::Class::Storage::DBI::DB2;
6 use base qw/DBIx::Class::Storage::DBI/;
8 # __PACKAGE__->load_components(qw/PK::Auto/);
10 sub _dbh_last_insert_id {
11 my ($self, $dbh, $source, $col) = @_;
13 my $sth = $dbh->prepare_cached('VALUES(IDENTITY_VAL_LOCAL())', {}, 3);
16 my @res = $sth->fetchrow_array();
18 return @res ? $res[0] : undef;
21 sub datetime_parser_type { "DateTime::Format::DB2"; }
27 DBIx::Class::Storage::DBI::DB2 - Automatic primary key class for DB2
31 # In your table classes
32 __PACKAGE__->load_components(qw/PK::Auto Core/);
33 __PACKAGE__->set_primary_key('id');
37 This class implements autoincrements for DB2.
45 You may distribute this code under the same terms as Perl itself.