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