X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FOracle.pm;h=d93cfe394e0ded2785fc95dc790ad71322278369;hb=9990e58f49603b81e3c1195c0e83595b0333c8df;hp=c0565d8a184f2b1eea530ed523841778acb74726;hpb=83b38372e2c0578e0bf793638863984151f046bb;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm index c0565d8..d93cfe3 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm @@ -9,28 +9,17 @@ use base qw/ use Carp::Clan qw/^DBIx::Class/; use Class::C3; -our $VERSION = '0.05002'; +our $VERSION = '0.07000'; =head1 NAME DBIx::Class::Schema::Loader::DBI::Oracle - DBIx::Class::Schema::Loader::DBI Oracle Implementation. -=head1 SYNOPSIS - - package My::Schema; - use base qw/DBIx::Class::Schema::Loader/; - - __PACKAGE__->loader_options( debug => 1 ); - - 1; - =head1 DESCRIPTION See L. -This module is considered experimental and not well tested yet. - =cut sub _setup { @@ -56,7 +45,7 @@ sub _table_as_sql { } sub _tables_list { - my $self = shift; + my ($self, $opts) = @_; my $dbh = $self->schema->storage->dbh; @@ -73,7 +62,17 @@ sub _tables_list { push @tables, $1 if $table =~ /\A(\w+)\z/; } - return $self->_filter_tables(@tables); + + 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, uc $table, '%'); + return [ map lc($_->{COLUMN_NAME}), @{ $sth->fetchall_arrayref({ COLUMN_NAME => 1 }) || [] } ]; } sub _table_uniq_info { @@ -127,19 +126,17 @@ sub _columns_info_for { } sub _extra_column_info { - my ($self, $info) = @_; + my ($self, $table, $column, $info, $dbi_info) = @_; my %extra_info; - my ($table, $column) = @$info{qw/TABLE_NAME COLUMN_NAME/}; - my $dbh = $self->schema->storage->dbh; my $sth = $dbh->prepare_cached( q{ SELECT COUNT(*) FROM all_triggers ut JOIN all_trigger_cols atc USING (trigger_name) WHERE atc.table_name = ? AND atc.column_name = ? - AND column_usage LIKE '%NEW%' AND column_usage LIKE '%OUT%' - AND trigger_type = 'BEFORE EACH ROW' AND triggering_event LIKE '%INSERT%' + AND lower(column_usage) LIKE '%new%' AND lower(column_usage) LIKE '%out%' + AND trigger_type = 'BEFORE EACH ROW' AND lower(triggering_event) LIKE '%insert%' }, {}, 1);