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