in reply to Re^3: Class::DBI vs. DBIx::Class
in thread Class::DBI vs. DBIx::Class
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?package DB; map { __PACKAGE__->register_class($_, __PACKAGE__ . "::$_") } qw(Perso +n);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Class::DBI vs. DBIx::Class
by rafl (Friar) on Jun 25, 2006 at 20:58 UTC | |
by hrr (Monk) on Jun 25, 2006 at 21:51 UTC | |
by rafl (Friar) on Jun 26, 2006 at 09:12 UTC |