Looks like this worked:
use Rose::DB::Oracle;
package Rose::DB::Oracle;
sub supports_schema {0;}
It also looks like I can override it at the Metadata level as well:
use Rose::DB::Object::Metadata;
package Rose::DB::Object::Metadata;
sub select_schema {return undef;}
But probably safer to override it at the Oracle level. Thanks for the
suggestion.
-Matt
On Jan 19, 4:10 pm, John Siracusa <
sirac...@gmail.com> wrote: