On Wed, Jan 16, 2008 at 08:54:35AM +0100, Peter Sørensen wrote: > Hi, > > I've been using perls for years and when dealing with web - CGI and DBI. > > Now I've come across Catalyst and DBIx. This is fantastic. Now I can > get back to the code I've written and actually understand what I wrote 2 > weeks back :-) > > I need some advice on where to look for documentation specially > the DBIx Class and which methods I can use in here along with Catalyst.
http://search.cpan.org/dist/DBIx-Class/ http://search.cpan.org/perldoc?Catalyst::Model::DBIC::Schema There's no 'which methods I can use', Model::DBIC::Schema exposes your (Catalyst-independent) DBIx::Class::Schema fairly directly so anything you can do with DBIC outside of Catalyst you can do inside, too. Note also that DBIx::Class is a separate project with its own list you can ask questions on, and 'DBIx' is the namespace for DBI extensions, of which there are lots, so just saying 'DBIx' when you mean DBIx::Class is wrong (and will potentially confuse people :) -- Matt S Trout Need help with your Catalyst or DBIx::Class project? Technical Director http://www.shadowcat.co.uk/catalyst/ Shadowcat Systems Ltd. Want a managed development or deployment platform? http://chainsawblues.vox.com/ http://www.shadowcat.co.uk/servers/ _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
