papi
papi

Reputation: 43

Which book has the best discussion of DBIx::Class?

I don't know if the DBIx::Class ORM is substantial enough to justify an entire book on the subject but I'd like to get a recommendation for a book that goes into the details of the DBIx::Class ORM.

Upvotes: 4

Views: 1558

Answers (3)

smonff
smonff

Reputation: 3497

This book by Jess Robinson is a good introduction to base concepts and advanced principles of DBIx::Class.

I remember that many times, when dealing with unlucky searches I ended up on it and found very useful examples. Worth reading to know about a wide range of tools and concepts that you could dig in the excellent but difficult to search DBIx::Class documentation.

Upvotes: 1

castaway
castaway

Reputation: 572

There is now also a chapter in the new Catalyst book: The Definitive Guide to Catalyst. I'm also updating and extending my tutorial (DBIx::Class::Tutorial) for a EPO grant.

Upvotes: 2

wes
wes

Reputation: 8185

I don't know if you can do much better than the online documentation. Between the introduction, walkthrough example, and cookbook, I think you'll have all you need to get started. Once you've looked through those, most of what you'll need for working with the ORM can be found in the ResultSet pod.

If you're really looking for a book, Jonathan Rockaway's Catalyst has a few chapters on setting up a DBIx-Class model. Obviously, most of that book is going to be irrelevant unless you're writing a Catalyst web app.

Upvotes: 6

Related Questions