in reply to Class::DBI vs. DBIx::Class

To me, the DBIx:: modules are more useful as facade interfaces to DBI, and the class::dbi modules are helpful to define relations between tables. As this topic has been discussed before; a Super Search will also lead to A brief survey of the DBI usability layer modules on the CPAN .

Replies are listed 'Best First'.
Re^2: Class::DBI vs. DBIx::Class
by davidrw (Prior) on Jun 25, 2006 at 01:11 UTC
    To me, the DBIx:: modules are more useful as facade interfaces to DBI, and the class::dbi modules are helpful to define relations between tables
    DBIx::Class does that too -- it's basically (y, i know i'm generalizing) a fork/provides same (type of at least; does differ in some) functionality as CDBI (note that the docs say that the "object API is inspired by Class::DBI")
Re^2: Class::DBI vs. DBIx::Class
by hrr (Monk) on Jun 25, 2006 at 03:27 UTC
    Great, thank you very much for that link! It contains useful information about pros and cons of using SQL statements vs. using an OO wraper (such as Class::DBI).