add quote_names connect_info option
[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 use mro 'c3';
8
9 __PACKAGE__->sql_limit_dialect ('RowNumberOver');
10 __PACKAGE__->sql_quote_char ('"');
11
12 sub _dbh_last_insert_id {
13     my ($self, $dbh, $source, $col) = @_;
14
15     my $sth = $dbh->prepare_cached('VALUES(IDENTITY_VAL_LOCAL())', {}, 3);
16     $sth->execute();
17
18     my @res = $sth->fetchrow_array();
19
20     return @res ? $res[0] : undef;
21 }
22
23 sub datetime_parser_type { "DateTime::Format::DB2"; }
24
25 1;
26
27 =head1 NAME
28
29 DBIx::Class::Storage::DBI::DB2 - Automatic primary key class for DB2
30
31 =head1 SYNOPSIS
32
33   # In your table classes
34   use base 'DBIx::Class::Core';
35   __PACKAGE__->set_primary_key('id');
36
37 =head1 DESCRIPTION
38
39 This class implements autoincrements for DB2.
40
41 =head1 AUTHORS
42
43 Jess Robinson
44
45 =head1 LICENSE
46
47 You may distribute this code under the same terms as Perl itself.
48
49 =cut