Revision history for Perl extension DBIx::Class::Schema::Loader
+ - Default Oracle db_schema to db username (patch
+ from Johannes Plunien)
+
0.04003 Wed Oct 4, 2007
- Prevent users from running Kwalitee test automatically
- Fix extra whitespace being added to output on
=cut
+sub _setup {
+ my $self = shift;
+
+ $self->next::method(@_);
+
+ my $dbh = $self->schema->storage->dbh;
+ $self->{db_schema} ||= $dbh->selectrow_array('SELECT USER FROM DUAL', {});
+}
+
+
sub _table_columns {
my ($self, $table) = @_;