in reply to Perplexing DBIx::Class problem

What does the SQL trace show when you run your code with environment variable DBIC_TRACE set? E.g.
$ DBIC_TRACE=1 perl myapp.pl
That should show the exact SQL being run, which will help track down what's wrong.

Replies are listed 'Best First'.
Re^2: Perplexing DBIx::Class problem
by Akoya (Scribe) on Feb 29, 2008 at 20:34 UTC
    Thank you. Being new to DBIx::Class, I wasn't aware of the DBIC_TRACE option. I will certainly give it a try when I get back to the project tonight.