suppress 'bad table' warnings for filtered tables, preserve case of MSSQL table names
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Oracle.pm
CommitLineData
d87d939a 1package DBIx::Class::Schema::Loader::DBI::Oracle;
e7262300 2
3use strict;
4use warnings;
6b0e47fc 5use base qw/
6 DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
7 DBIx::Class::Schema::Loader::DBI
8/;
e7262300 9use Carp::Clan qw/^DBIx::Class/;
10use Class::C3;
11
e42ec4ef 12our $VERSION = '0.05003';
e7262300 13
14=head1 NAME
15
16DBIx::Class::Schema::Loader::DBI::Oracle - DBIx::Class::Schema::Loader::DBI
17Oracle Implementation.
18
19=head1 SYNOPSIS
20
21 package My::Schema;
22 use base qw/DBIx::Class::Schema::Loader/;
23
24 __PACKAGE__->loader_options( debug => 1 );
25
26 1;
27
28=head1 DESCRIPTION
29
30See L<DBIx::Class::Schema::Loader::Base>.
31
32This module is considered experimental and not well tested yet.
33
34=cut
35
d0e184e9 36sub _setup {
37 my $self = shift;
38
39 $self->next::method(@_);
40
41 my $dbh = $self->schema->storage->dbh;
46065bcb 42
43 my ($current_schema) = $dbh->selectrow_array('SELECT USER FROM DUAL', {});
44
45 $self->{db_schema} ||= $current_schema;
46
47 if (lc($self->db_schema) ne lc($current_schema)) {
48 $dbh->do('ALTER SESSION SET current_schema=' . $self->db_schema);
49 }
d0e184e9 50}
51
075aff97 52sub _table_as_sql {
e7262300 53 my ($self, $table) = @_;
54
075aff97 55 return $self->_quote_table_name($table);
e7262300 56}
57
58sub _tables_list {
bfb43060 59 my ($self, $opts) = @_;
e7262300 60
61 my $dbh = $self->schema->storage->dbh;
62
63 my @tables;
64 for my $table ( $dbh->tables(undef, $self->db_schema, '%', 'TABLE,VIEW') ) { #catalog, schema, table, type
65 my $quoter = $dbh->get_info(29);
66 $table =~ s/$quoter//g;
67
68 # remove "user." (schema) prefixes
69 $table =~ s/\w+\.//;
70
71 next if $table eq 'PLAN_TABLE';
72 $table = lc $table;
73 push @tables, $1
74 if $table =~ /\A(\w+)\z/;
75 }
ffb03c96 76
bfb43060 77 return $self->_filter_tables(\@tables, $opts);
e7262300 78}
79
80sub _table_uniq_info {
81 my ($self, $table) = @_;
82
e7262300 83 my $dbh = $self->schema->storage->dbh;
84
85 my $sth = $dbh->prepare_cached(
65ab592d 86 q{
c7bf4194 87 SELECT constraint_name, acc.column_name
88 FROM all_constraints JOIN all_cons_columns acc USING (constraint_name)
8803e4ed 89 WHERE acc.table_name=? and acc.owner = ? AND constraint_type='U'
c7bf4194 90 ORDER BY acc.position
65ab592d 91 },
92 {}, 1);
e7262300 93
8803e4ed 94 $sth->execute(uc $table,$self->{db_schema} );
e7262300 95 my %constr_names;
96 while(my $constr = $sth->fetchrow_arrayref) {
65ab592d 97 my $constr_name = lc $constr->[0];
98 my $constr_def = lc $constr->[1];
e7262300 99 $constr_name =~ s/\Q$self->{_quoter}\E//;
100 $constr_def =~ s/\Q$self->{_quoter}\E//;
65ab592d 101 push @{$constr_names{$constr_name}}, $constr_def;
e7262300 102 }
65ab592d 103
104 my @uniqs = map { [ $_ => $constr_names{$_} ] } keys %constr_names;
e7262300 105 return \@uniqs;
106}
107
108sub _table_pk_info {
65ab592d 109 my ($self, $table) = @_;
110 return $self->next::method(uc $table);
e7262300 111}
112
113sub _table_fk_info {
114 my ($self, $table) = @_;
115
65ab592d 116 my $rels = $self->next::method(uc $table);
e7262300 117
65ab592d 118 foreach my $rel (@$rels) {
119 $rel->{remote_table} = lc $rel->{remote_table};
e7262300 120 }
121
65ab592d 122 return $rels;
123}
124
125sub _columns_info_for {
126 my ($self, $table) = @_;
127 return $self->next::method(uc $table);
e7262300 128}
129
fb328d1a 130sub _extra_column_info {
45be2ce7 131 my ($self, $table, $column, $info, $dbi_info) = @_;
fb328d1a 132 my %extra_info;
133
fb328d1a 134 my $dbh = $self->schema->storage->dbh;
135 my $sth = $dbh->prepare_cached(
136 q{
137 SELECT COUNT(*)
c7bf4194 138 FROM all_triggers ut JOIN all_trigger_cols atc USING (trigger_name)
139 WHERE atc.table_name = ? AND atc.column_name = ?
fb328d1a 140 AND column_usage LIKE '%NEW%' AND column_usage LIKE '%OUT%'
141 AND trigger_type = 'BEFORE EACH ROW' AND triggering_event LIKE '%INSERT%'
142 },
143 {}, 1);
144
145 $sth->execute($table, $column);
146 if ($sth->fetchrow_array) {
147 $extra_info{is_auto_increment} = 1;
148 }
149
150 return \%extra_info;
151}
152
e7262300 153=head1 SEE ALSO
154
155L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
156L<DBIx::Class::Schema::Loader::DBI>
157
158=head1 AUTHOR
159
9cc8e7e1 160See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
e7262300 161
be80bba7 162=head1 LICENSE
163
164This library is free software; you can redistribute it and/or modify it under
165the same terms as Perl itself.
fb328d1a 166
e7262300 167=cut
168
1691;