removed the mistaken debug code
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / DB2.pm
CommitLineData
843f8ecd 1package DBIx::Class::Storage::DBI::DB2;
2
3use strict;
4use warnings;
5
6use base qw/DBIx::Class::Storage::DBI/;
7
8# __PACKAGE__->load_components(qw/PK::Auto/);
9
d4f16b21 10sub _dbh_last_insert_id {
11 my ($self, $dbh, $source, $col) = @_;
843f8ecd 12
d4f16b21 13 my $sth = $dbh->prepare_cached('VALUES(IDENTITY_VAL_LOCAL())', {}, 3);
843f8ecd 14 $sth->execute();
15
16 my @res = $sth->fetchrow_array();
17
18 return @res ? $res[0] : undef;
843f8ecd 19}
20
45fa8288 21sub datetime_parser_type { "DateTime::Format::DB2"; }
22
843f8ecd 231;
24
75d07914 25=head1 NAME
843f8ecd 26
27DBIx::Class::Storage::DBI::DB2 - Automatic primary key class for DB2
28
29=head1 SYNOPSIS
30
31 # In your table classes
32 __PACKAGE__->load_components(qw/PK::Auto Core/);
33 __PACKAGE__->set_primary_key('id');
34
35=head1 DESCRIPTION
36
37This class implements autoincrements for DB2.
38
39=head1 AUTHORS
40
41Jess Robinson
42
43=head1 LICENSE
44
45You may distribute this code under the same terms as Perl itself.
46
47=cut