Fix limiting table list to the specified schema for DB2
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / DB2.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::DBI::DB2;
2
3use strict;
4use warnings;
5use base 'DBIx::Class::Schema::Loader::DBI';
fa994d3c 6use Carp::Clan qw/^DBIx::Class/;
996be9ee 7use Class::C3;
8
49f82092 9our $VERSION = '0.04999_04';
32f784fc 10
996be9ee 11=head1 NAME
12
13DBIx::Class::Schema::Loader::DBI::DB2 - DBIx::Class::Schema::Loader::DBI DB2 Implementation.
14
15=head1 SYNOPSIS
16
17 package My::Schema;
18 use base qw/DBIx::Class::Schema::Loader/;
19
59cfa251 20 __PACKAGE__->loader_options( db_schema => "MYSCHEMA" );
996be9ee 21
22 1;
23
24=head1 DESCRIPTION
25
26See L<DBIx::Class::Schema::Loader::Base>.
27
28=cut
29
30sub _table_uniq_info {
31 my ($self, $table) = @_;
32
33 my @uniqs;
34
35 my $dbh = $self->schema->storage->dbh;
36
5223f24a 37 my $sth = $self->{_cache}->{db2_uniq} ||= $dbh->prepare(
38 q{SELECT kcu.COLNAME, kcu.CONSTNAME, kcu.COLSEQ
39 FROM SYSCAT.TABCONST as tc
40 JOIN SYSCAT.KEYCOLUSE as kcu ON tc.CONSTNAME = kcu.CONSTNAME
41 WHERE tc.TABSCHEMA = ? and tc.TABNAME = ? and tc.TYPE = 'U'}
4421d6a3 42 ) or die $DBI::errstr;
5223f24a 43
a168c1c4 44 $sth->execute($self->db_schema, uc $table) or die $DBI::errstr;
996be9ee 45
46 my %keydata;
47 while(my $row = $sth->fetchrow_arrayref) {
48 my ($col, $constname, $seq) = @$row;
49 push(@{$keydata{$constname}}, [ $seq, lc $col ]);
50 }
51 foreach my $keyname (keys %keydata) {
52 my @ordered_cols = map { $_->[1] } sort { $a->[0] <=> $b->[0] }
53 @{$keydata{$keyname}};
54 push(@uniqs, [ $keyname => \@ordered_cols ]);
55 }
4421d6a3 56
996be9ee 57 $sth->finish;
58
59 return \@uniqs;
60}
61
072d5aae 62# DBD::DB2 doesn't follow the DBI API for ->tables
63sub _tables_list {
a168c1c4 64 my $self = shift;
072d5aae 65
66 my $dbh = $self->schema->storage->dbh;
67 my @tables = map { lc } $dbh->tables(
68 $self->db_schema ? { TABLE_SCHEM => $self->db_schema } : undef
69 );
70 s/\Q$self->{_quoter}\E//g for @tables;
71 s/^.*\Q$self->{_namesep}\E// for @tables;
72
73 return @tables;
a168c1c4 74}
75
76sub _table_pk_info {
77 my ($self, $table) = @_;
78 return $self->next::method(uc $table);
79}
80
81sub _table_fk_info {
82 my ($self, $table) = @_;
83
84 my $rels = $self->next::method(uc $table);
85
86 foreach my $rel (@$rels) {
87 $rel->{remote_table} = lc $rel->{remote_table};
88 }
89
90 return $rels;
91}
92
93sub _columns_info_for {
94 my ($self, $table) = @_;
95 return $self->next::method(uc $table);
96}
97
772cfe65 98sub _extra_column_info {
99 my ($self, $info) = @_;
100 my %extra_info;
101
102 my ($table, $column) = @$info{qw/TABLE_NAME COLUMN_NAME/};
103
104 my $dbh = $self->schema->storage->dbh;
105 my $sth = $dbh->prepare_cached(
106 q{
107 SELECT COUNT(*)
108 FROM syscat.columns
109 WHERE tabschema = ? AND tabname = ? AND colname = ?
110 AND identity = 'Y' AND generated != ''
111 },
112 {}, 1);
113 $sth->execute($self->db_schema, $table, $column);
114 if ($sth->fetchrow_array) {
115 $extra_info{is_auto_increment} = 1;
116 }
117
118 return \%extra_info;
119}
120
996be9ee 121=head1 SEE ALSO
122
123L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
124L<DBIx::Class::Schema::Loader::DBI>
125
126=cut
127
1281;