finish preserve_case support
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / DB2.pm
1 package DBIx::Class::Schema::Loader::DBI::DB2;
2
3 use strict;
4 use warnings;
5 use base qw/
6     DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
7     DBIx::Class::Schema::Loader::DBI
8 /;
9 use Carp::Clan qw/^DBIx::Class/;
10 use Class::C3;
11
12 our $VERSION = '0.07000';
13
14 =head1 NAME
15
16 DBIx::Class::Schema::Loader::DBI::DB2 - DBIx::Class::Schema::Loader::DBI DB2 Implementation.
17
18 =head1 SYNOPSIS
19
20   package My::Schema;
21   use base qw/DBIx::Class::Schema::Loader/;
22
23   __PACKAGE__->loader_options( db_schema => "MYSCHEMA" );
24
25   1;
26
27 =head1 DESCRIPTION
28
29 See L<DBIx::Class::Schema::Loader::Base>.
30
31 =cut
32
33 sub _setup {
34     my $self = shift;
35
36     $self->next::method(@_);
37
38     my $dbh = $self->schema->storage->dbh;
39     $self->{db_schema} ||= $dbh->selectrow_array('VALUES(CURRENT_USER)', {});
40
41     if (not defined $self->preserve_case) {
42         $self->preserve_case(0);
43     }
44     elsif ($self->preserve_case) {
45         $self->schema->storage->sql_maker->quote_char('"');
46         $self->schema->storage->sql_maker->name_sep('.');
47     }
48 }
49
50 sub _table_uniq_info {
51     my ($self, $table) = @_;
52
53     my @uniqs;
54
55     my $dbh = $self->schema->storage->dbh;
56
57     my $sth = $self->{_cache}->{db2_uniq} ||= $dbh->prepare(
58         q{SELECT kcu.COLNAME, kcu.CONSTNAME, kcu.COLSEQ
59         FROM SYSCAT.TABCONST as tc
60         JOIN SYSCAT.KEYCOLUSE as kcu
61         ON tc.CONSTNAME = kcu.CONSTNAME AND tc.TABSCHEMA = kcu.TABSCHEMA
62         WHERE tc.TABSCHEMA = ? and tc.TABNAME = ? and tc.TYPE = 'U'}
63     ) or die $DBI::errstr;
64
65     $sth->execute($self->db_schema, $self->_uc($table)) or die $DBI::errstr;
66
67     my %keydata;
68     while(my $row = $sth->fetchrow_arrayref) {
69         my ($col, $constname, $seq) = @$row;
70         push(@{$keydata{$constname}}, [ $seq, $self->_lc($col) ]);
71     }
72     foreach my $keyname (keys %keydata) {
73         my @ordered_cols = map { $_->[1] } sort { $a->[0] <=> $b->[0] }
74             @{$keydata{$keyname}};
75         push(@uniqs, [ $keyname => \@ordered_cols ]);
76     }
77
78     $sth->finish;
79     
80     return \@uniqs;
81 }
82
83 # DBD::DB2 doesn't follow the DBI API for ->tables
84 sub _tables_list { 
85     my ($self, $opts) = @_;
86     
87     my $dbh = $self->schema->storage->dbh;
88     my @tables = map $self->_lc($_), $dbh->tables(
89         $self->db_schema ? { TABLE_SCHEM => $self->db_schema } : undef
90     );
91     s/\Q$self->{_quoter}\E//g for @tables;
92     s/^.*\Q$self->{_namesep}\E// for @tables;
93
94     return $self->_filter_tables(\@tables, $opts);
95 }
96
97 sub _table_pk_info {
98     my ($self, $table) = @_;
99     return $self->next::method($self->_uc($table));
100 }
101
102 sub _table_fk_info {
103     my ($self, $table) = @_;
104
105     my $rels = $self->next::method($self->_uc($table));
106
107     foreach my $rel (@$rels) {
108         $rel->{remote_table} = $self->_lc($rel->{remote_table});
109     }
110
111     return $rels;
112 }
113
114 sub _columns_info_for {
115     my $self = shift;
116     my ($table) = @_;
117
118     my $result = $self->next::method($self->_uc($table));
119
120     my $dbh = $self->schema->storage->dbh;
121
122     while (my ($col, $info) = each %$result) {
123         # check for identities
124         my $sth = $dbh->prepare_cached(
125             q{
126                 SELECT COUNT(*)
127                 FROM syscat.columns
128                 WHERE tabschema = ? AND tabname = ? AND colname = ?
129                 AND identity = 'Y' AND generated != ''
130             },
131             {}, 1);
132         $sth->execute($self->db_schema, $self->_uc($table), $self->_uc($col));
133         if ($sth->fetchrow_array) {
134             $info->{is_auto_increment} = 1;
135         }
136
137         if ((eval { lc ${ $info->{default_value} } }||'') eq 'current timestamp') {
138             ${ $info->{default_value} } = 'current_timestamp';
139             delete $info->{size};
140
141             my $orig_deflt = 'current timestamp';
142             $info->{original}{default_value} = \$orig_deflt;
143         }
144     }
145
146     return $result;
147 }
148
149 =head1 SEE ALSO
150
151 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
152 L<DBIx::Class::Schema::Loader::DBI>
153
154 =head1 AUTHOR
155
156 See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
157
158 =head1 LICENSE
159
160 This library is free software; you can redistribute it and/or modify it under
161 the same terms as Perl itself.
162
163 =cut
164
165 1;
166 # vim:et sts=4 sw=4 tw=0: