Re: [Catalyst] Catalyst / DBIx Class Relationship many_to_many problem

2009-02-02 Thread Jakub Tutaj
J. Shirley wrote: This is actually a DBIx::Class issue and not Catalyst, but the answer to your problem is to simply enable quoting. Since 'user' is a reserved word, you must quote it. See this section in the DBIx::Class cookbook:

[Catalyst] Catalyst / DBIx Class Relationship many_to_many problem

2009-02-01 Thread Jakub Tutaj
Hello! I've started using Catalyst, and now I've started writing my second app (after 1st one - MyApp from tutorial) I've created db tables analogic to tutorial: courses (id, name) users (id, name, email, etc.) course_users (course_id, user_id) When trying to list all users from one course,

Re: [Catalyst] Catalyst / DBIx Class Relationship many_to_many problem

2009-02-01 Thread J. Shirley
On Sun, Feb 1, 2009 at 1:10 PM, Jakub Tutaj j...@wp.pl wrote: Hello! I've started using Catalyst, and now I've started writing my second app (after 1st one - MyApp from tutorial) I've created db tables analogic to tutorial: courses (id, name) users (id, name, email, etc.) course_users