::Replicated - test hashref for connect_replicants and croak on coderef, switch to...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / DB2.pm
1 package DBIx::Class::Storage::DBI::DB2;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Storage::DBI/;
7
8 # __PACKAGE__->load_components(qw/PK::Auto/);
9
10 sub _dbh_last_insert_id {
11     my ($self, $dbh, $source, $col) = @_;
12
13     my $sth = $dbh->prepare_cached('VALUES(IDENTITY_VAL_LOCAL())', {}, 3);
14     $sth->execute();
15
16     my @res = $sth->fetchrow_array();
17
18     return @res ? $res[0] : undef;
19 }
20
21 sub datetime_parser_type { "DateTime::Format::DB2"; }
22
23 1;
24
25 =head1 NAME
26
27 DBIx::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
37 This class implements autoincrements for DB2.
38
39 =head1 AUTHORS
40
41 Jess Robinson
42
43 =head1 LICENSE
44
45 You may distribute this code under the same terms as Perl itself.
46
47 =cut