in reply to
Re^3: Class::DBI vs. DBIx::Class
in thread Class::DBI vs. DBIx::Class
Thank you very much! register_class works well:
package DB;
map { __PACKAGE__->register_class($_, __PACKAGE__ . "::$_") } qw(Perso
+n);
Actually, connecting to single database is sufficient for me in most of the cases, so working without a schema would be great. How would I do this concretely? It did not find it in the documentation---apparently, working with a single database is (surprisingly) not very popular. Would I need to declare
DB::Person as a subclass of
ResultSource?