Hello 

Thanks a lot for jOOQ :)

When doing queries like this:
```dslContext
.select(DSL.count(table.field("SOME_FIELD")))
.from(table) ``` 

we would like "SOME_FIELD" to be taken in account in a case insensitive 
way. 

For example we would like to be able to write both:
``` dslContext
.select(DSL.count(table.field("SOME_FIELD")))
.from(table) ``` 
and
``` dslContext
.select(DSL.count(table.field("some_field")))
.from(table) ``` 

Is it possible somehow?

At worst is there a way to force a case other than the one in the DB, for 
example having some_field in DB but using SOME_FIELD when querying?

Thanks in advance

Best regards
joseph

-- 
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].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jooq-user/cbac578e-70ec-4bcc-99d2-f1ebd2875dc1n%40googlegroups.com.

Reply via email to