http://www.perlmonks.org?node_id=497641


in reply to Class::DBI::Loader and Postgres schemas

Not currently, but it appears you can hack it to work. In Class::DBI::Loader::Pg.pm there is a line:
return $dbh->tables( undef, "public", "", "table", { noprefix => 1, pg_noprefix => 1 } );
Replace the "public" with the name of your schema and it should work as you want.

UPDATE: I've sent a patch off to the maintainer for this so hopefully it will be in the next release for you.

Frank Wiles <frank@wiles.org>
http://www.wiles.org

Replies are listed 'Best First'.
Re^2: Class::DBI::Loader and Postgres schemas
by srdst13 (Pilgrim) on Oct 05, 2005 at 16:26 UTC
    Always good to hack. Thanks for sending off the patch. I guess it should also be possible to override db_main using another base class (?), but I haven't tried that yet.

    Sean
Re^2: Class::DBI::Loader and Postgres schemas
by ioannis (Abbot) on Jun 15, 2006 at 08:29 UTC