1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
package DBIx::Class::Schema::Loader::DBI::Oracle;
use strict;
use warnings;
use base qw/
DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
DBIx::Class::Schema::Loader::DBI
/;
use Carp::Clan qw/^DBIx::Class/;
use Class::C3;
our $VERSION = '0.07000';
=head1 NAME
DBIx::Class::Schema::Loader::DBI::Oracle - DBIx::Class::Schema::Loader::DBI
Oracle Implementation.
=head1 DESCRIPTION
See L<DBIx::Class::Schema::Loader::Base>.
=cut
sub _setup {
my $self = shift;
$self->next::method(@_);
my $dbh = $self->schema->storage->dbh;
my ($current_schema) = $dbh->selectrow_array('SELECT USER FROM DUAL', {});
$self->{db_schema} ||= $current_schema;
if (lc($self->db_schema) ne lc($current_schema)) {
$dbh->do('ALTER SESSION SET current_schema=' . $self->db_schema);
}
if (not defined $self->preserve_case) {
$self->preserve_case(0);
}
elsif ($self->preserve_case) {
$self->schema->storage->sql_maker->quote_char('"');
$self->schema->storage->sql_maker->name_sep('.');
}
}
sub _table_as_sql {
my ($self, $table) = @_;
return $self->_quote_table_name($table);
}
sub _tables_list {
my ($self, $opts) = @_;
my $dbh = $self->schema->storage->dbh;
my @tables;
for my $table ( $dbh->tables(undef, $self->db_schema, '%', 'TABLE,VIEW') ) { #catalog, schema, table, type
my $quoter = $dbh->get_info(29);
$table =~ s/$quoter//g;
# remove "user." (schema) prefixes
$table =~ s/\w+\.//;
next if $table eq 'PLAN_TABLE';
$table = $self->_lc($table);
push @tables, $1
if $table =~ /\A(\w+)\z/;
}
return $self->_filter_tables(\@tables, $opts);
}
sub _table_columns {
my ($self, $table) = @_;
my $dbh = $self->schema->storage->dbh;
my $sth = $dbh->column_info(undef, $self->db_schema, $self->_uc($table), '%');
return [ map $self->_lc($_->{COLUMN_NAME}), @{ $sth->fetchall_arrayref({ COLUMN_NAME => 1 }) || [] } ];
}
sub _table_uniq_info {
my ($self, $table) = @_;
my $dbh = $self->schema->storage->dbh;
my $sth = $dbh->prepare_cached(
q{
SELECT constraint_name, acc.column_name
FROM all_constraints JOIN all_cons_columns acc USING (constraint_name)
WHERE acc.table_name=? and acc.owner = ? AND constraint_type='U'
ORDER BY acc.position
},
{}, 1);
$sth->execute($self->_uc($table),$self->{db_schema} );
my %constr_names;
while(my $constr = $sth->fetchrow_arrayref) {
my $constr_name = $self->_lc($constr->[0]);
my $constr_col = $self->_lc($constr->[1]);
$constr_name =~ s/\Q$self->{_quoter}\E//;
$constr_col =~ s/\Q$self->{_quoter}\E//;
push @{$constr_names{$constr_name}}, $constr_col;
}
my @uniqs = map { [ $_ => $constr_names{$_} ] } keys %constr_names;
return \@uniqs;
}
sub _table_pk_info {
my ($self, $table) = (shift, shift);
return $self->next::method($self->_uc($table), @_);
}
sub _table_fk_info {
my ($self, $table) = (shift, shift);
my $rels = $self->next::method($self->_uc($table), @_);
foreach my $rel (@$rels) {
$rel->{remote_table} = $self->_lc($rel->{remote_table});
}
return $rels;
}
sub _columns_info_for {
my ($self, $table) = (shift, shift);
my $result = $self->next::method($self->_uc($table), @_);
my $dbh = $self->schema->storage->dbh;
local $dbh->{LongReadLen} = 100000;
local $dbh->{LongTruncOk} = 1;
my $sth = $dbh->prepare_cached(q{
SELECT atc.column_name, ut.trigger_body
FROM all_triggers ut
JOIN all_trigger_cols atc USING (trigger_name)
WHERE atc.table_name = ?
AND lower(column_usage) LIKE '%new%' AND lower(column_usage) LIKE '%out%'
AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIKE '%insert%'
}, {}, 1);
$sth->execute($self->_uc($table));
while (my ($col_name, $trigger_body) = $sth->fetchrow_array) {
$col_name = $self->_lc($col_name);
$result->{$col_name}{is_auto_increment} = 1;
if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:\."?(\w+)"?)?"?(\w+)"?\.nextval/i) {
$seq_schema = $self->_lc($seq_schema) || $self->db_schema;
$seq_name = $self->_lc($seq_name);
$result->{$col_name}{sequence} = ($self->qualify_objects ? ($seq_schema . '.') : '') . $seq_name;
}
}
while (my ($col, $info) = each %$result) {
no warnings 'uninitialized';
if ($info->{data_type} =~ /^(?:n?[cb]lob|long(?: raw)?|bfile|date|binary_(?:float|double)|rowid)\z/i) {
delete $info->{size};
}
if ($info->{data_type} =~ /^n(?:var)?char2?\z/i) {
$info->{size} = $info->{size} / 2;
}
elsif (lc($info->{data_type}) eq 'number') {
$info->{original}{data_type} = 'number';
$info->{data_type} = 'numeric';
if (eval { $info->{size}[0] == 38 && $info->{size}[1] == 0 }) {
$info->{original}{size} = $info->{size};
$info->{data_type} = 'integer';
delete $info->{size};
}
}
elsif (my ($precision) = $info->{data_type} =~ /^timestamp\((\d+)\)(?: with (?:local )?time zone)?\z/i) {
$info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
if ($precision == 6) {
delete $info->{size};
}
else {
$info->{size} = $precision;
}
}
elsif (($precision) = $info->{data_type} =~ /^interval year\((\d+)\) to month\z/i) {
$info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
if ($precision == 2) {
delete $info->{size};
}
else {
$info->{size} = $precision;
}
}
elsif (my ($day_precision, $second_precision) = $info->{data_type} =~ /^interval day\((\d+)\) to second\((\d+)\)\z/i) {
$info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
if ($day_precision == 2 && $second_precision == 6) {
delete $info->{size};
}
else {
$info->{size} = [ $day_precision, $second_precision ];
}
}
elsif (lc($info->{data_type}) eq 'float') {
$info->{original}{data_type} = 'float';
$info->{original}{size} = $info->{size};
if ($info->{size} <= 63) {
$info->{data_type} = 'real';
}
else {
$info->{data_type} = 'double precision';
}
delete $info->{size};
}
elsif (lc($info->{data_type}) eq 'urowid' && $info->{size} == 4000) {
delete $info->{size};
}
elsif (lc($info->{data_type}) eq 'date') {
$info->{data_type} = 'datetime';
$info->{original}{data_type} = 'date';
}
elsif (lc($info->{data_type}) eq 'binary_float') {
$info->{data_type} = 'real';
$info->{original}{data_type} = 'binary_float';
}
elsif (lc($info->{data_type}) eq 'binary_double') {
$info->{data_type} = 'double precision';
$info->{original}{data_type} = 'binary_double';
}
if ((eval { lc(${ $info->{default_value} }) }||'') eq 'sysdate') {
my $current_timestamp = 'current_timestamp';
$info->{default_value} = \$current_timestamp;
my $sysdate = 'sysdate';
$info->{original}{default_value} = \$sysdate;
}
}
return $result;
}
=head1 SEE ALSO
L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
L<DBIx::Class::Schema::Loader::DBI>
=head1 AUTHOR
See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
=head1 LICENSE
This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
1;
# vim:et sts=4 sw=4 tw=0:
|