various identifier cleanups, to help prevent clashing with Schema stuff down the...
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DB2.pm
CommitLineData
18fca96a 1package DBIx::Class::Schema::Loader::DB2;
a78e3fed 2
3use strict;
18fca96a 4use base 'DBIx::Class::Schema::Loader::Generic';
a78e3fed 5use Carp;
6
7=head1 NAME
8
18fca96a 9DBIx::Class::Schema::Loader::DB2 - DBIx::Class::Schema::Loader DB2 Implementation.
a78e3fed 10
11=head1 SYNOPSIS
12
18fca96a 13 use DBIx::Schema::Class::Loader;
a78e3fed 14
18fca96a 15 # $loader is a DBIx::Class::Schema::Loader::DB2
16 my $loader = DBIx::Class::Schema::Loader->new(
38348090 17 dsn => "dbi:DB2:dbname",
18 user => "myuser",
19 password => "",
20 db_schema => "MYSCHEMA",
21 drop_schema => 1,
a78e3fed 22 );
a78e3fed 23
24=head1 DESCRIPTION
25
18fca96a 26See L<DBIx::Class::Schema::Loader>.
a78e3fed 27
28=cut
29
3385ac62 30sub _loader_db_classes {
af96f52e 31 return qw/DBIx::Class::PK::Auto::DB2/;
a78e3fed 32}
33
3385ac62 34sub _loader_tables {
a4a19f3c 35 my $class = shift;
a78e3fed 36 my %args = @_;
3385ac62 37 my $db_schema = uc $class->_loader_data->{db_schema};
a4a19f3c 38 my $dbh = $class->storage->dbh;
a78e3fed 39
40 # this is split out to avoid version parsing errors...
41 my $is_dbd_db2_gte_114 = ( $DBD::DB2::VERSION >= 1.14 );
42 my @tables = $is_dbd_db2_gte_114 ?
43 $dbh->tables( { TABLE_SCHEM => '%', TABLE_TYPE => 'TABLE,VIEW' } )
44 : $dbh->tables;
a78e3fed 45 # People who use table or schema names that aren't identifiers deserve
46 # what they get. Still, FIXME?
47 s/\"//g for @tables;
48 @tables = grep {!/^SYSIBM\./ and !/^SYSCAT\./ and !/^SYSSTAT\./} @tables;
af6c2665 49 @tables = grep {/^$db_schema\./} @tables if($db_schema);
a78e3fed 50 return @tables;
51}
52
3385ac62 53sub _loader_table_info {
a4a19f3c 54 my ( $class, $table ) = @_;
a78e3fed 55# $|=1;
3385ac62 56# print "_loader_table_info($table)\n";
af6c2665 57 my ($db_schema, $tabname) = split /\./, $table, 2;
58 # print "DB_Schema: $db_schema, Table: $tabname\n";
a78e3fed 59
60 # FIXME: Horribly inefficient and just plain evil. (JMM)
a4a19f3c 61 my $dbh = $class->storage->dbh;
a78e3fed 62 $dbh->{RaiseError} = 1;
63
64 my $sth = $dbh->prepare(<<'SQL') or die;
65SELECT c.COLNAME
66FROM SYSCAT.COLUMNS as c
67WHERE c.TABSCHEMA = ? and c.TABNAME = ?
68SQL
69
af6c2665 70 $sth->execute($db_schema, $tabname) or die;
af96f52e 71 my @cols = map { lc } map { @$_ } @{$sth->fetchall_arrayref};
72
73 $sth->finish;
a78e3fed 74
75 $sth = $dbh->prepare(<<'SQL') or die;
76SELECT kcu.COLNAME
77FROM SYSCAT.TABCONST as tc
78JOIN SYSCAT.KEYCOLUSE as kcu ON tc.constname = kcu.constname
79WHERE tc.TABSCHEMA = ? and tc.TABNAME = ? and tc.TYPE = 'P'
80SQL
81
af6c2665 82 $sth->execute($db_schema, $tabname) or die;
a78e3fed 83
af96f52e 84 my @pri = map { lc } map { @$_ } @{$sth->fetchall_arrayref};
85
86 $sth->finish;
a78e3fed 87
88 return ( \@cols, \@pri );
89}
90
af96f52e 91# Find and setup relationships
3385ac62 92sub _loader_relationships {
af96f52e 93 my $class = shift;
94
95 my $dbh = $class->storage->dbh;
96
97 my $sth = $dbh->prepare(<<'SQL') or die;
98SELECT SR.COLCOUNT, SR.REFTBNAME, SR.PKCOLNAMES, SR.FKCOLNAMES
99FROM SYSIBM.SYSRELS SR WHERE SR.TBNAME = ?
100SQL
101
102 foreach my $table ( $class->tables ) {
103 if ($sth->execute(uc $table)) {
104 while(my $res = $sth->fetchrow_arrayref()) {
105 my ($colcount, $other, $other_column, $column) =
708c0939 106 map { lc } @$res;
107
108 my @self_cols = split(' ',$column);
109 my @other_cols = split(' ',$other_column);
110 if(@self_cols != $colcount || @other_cols != $colcount) {
111 die "Column count discrepancy while getting rel info";
112 }
113
114 my %cond;
115 for(my $i = 0; $i < @self_cols; $i++) {
116 $cond{$other_cols[$i]} = $self_cols[$i];
117 }
118
3385ac62 119 eval { $class->_loader_make_relations ($table, $other, \%cond); };
af96f52e 120 warn qq/\# belongs_to_many failed "$@"\n\n/
3385ac62 121 if $@ && $class->_loader_debug;
af96f52e 122 }
123 }
124 }
125
126 $sth->finish;
127 $dbh->disconnect;
128}
129
a78e3fed 130=head1 SEE ALSO
131
18fca96a 132L<DBIx::Class::Schema::Loader>
a78e3fed 133
134=cut
135
1361;