in reply to Mixed-case column names breaking under Class::DBI

The problem is that you are changing a DBI parameter that Class::DBI depends on, namely FetchHashKeyName => 'NAME_lc'. Remove that, and it should work.

Replies are listed 'Best First'.
Re^2: Mixed-case column names breaking under Class::DBI
by sintadil (Pilgrim) on Sep 20, 2004 at 20:25 UTC

    The problem is that you are changing a DBI parameter that Class::DBI depends on, namely FetchHashKeyName => 'NAME_lc'. Remove that, and it should work.

    Doh. I knew that I forgot something in my original post. I forgot to mention that I tried all of the quoting methods before adding that, though I'm off to try them again. Thanks for reminding me.