Hi Lukas and Igor, The filtered post was from me, accidentally posting from a different Google login. My second time hit by Google spam filters!
Anyway, to add to what Lukas said, we ran into this exact issue with Postgres and jOOQ, and I actually see this is a Postgres limitation, not a jOOQ issue. Basically, Postgres will automatically lower case any identifier name (like a field name or table name) unless it's surrounded by quotes. See http://stackoverflow.com/questions/20878932/are-postgresql-column-names-case-sensitive. Having to surround every field name with quotes for the life of your application is needlessly cumbersome. The solution we took is to just switch to use underscored identifiers. So, your "htmlSummary" would become "html_summary". Josh On Monday, September 8, 2014 1:59:12 AM UTC-7, Lukas Eder wrote: > > Hello, > > Unfortunately, Google Groups has spam-filtered and eaten a reply by > someone, and I cannot retrieve it. Please, if you sent an e-mail to this > thread, can you re-send it? > > Thanks, > Lukas > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
