in reply to Re: Catalyst?
in thread How mature is Catalyst?

Class::DBI does not work at all on tables without a primary key. If you have such tables and try to use them with Class::DBI, you will run into problems.

Replies are listed 'Best First'.
Re^3: Catalyst?
by moot (Chaplain) on Sep 13, 2005 at 16:14 UTC

    Ah, I should have been clearer. The default Catalyst::Model::CDBI class attempts to load *all* tables (using Class::DBI::Loader), which includes those without a primary key. Although I could have passed it a regexp of tables to include, that would soon become cumbersome. Since I only needed a few tables anyway, and they are all read-only (for this application), I bypassed C:M:CDBI for the tables I'm using.

    Sorry for any confusion.