Record setvalue javadoc

2019-04-26 Thread Christian Master
[#2211] Future versions of jOOQ might remove the set(Field, Object) <../../org/jooq/Record.html#set-org.jooq.Field-T-> method. It is recommended to use set(Field, Object) <../../org/jooq/Record.html#set-org.jooq.Field-T-> instead. do you remove setValue or set ? I think javadoc should be

Re: Case insensitive Table.field or generating fields using lowercased column names?

2019-04-26 Thread Lukas Eder
Thank you very much for your message. We have a pending feature request that would allow for configuring case sensitivity of column access in methods like Table.field() and various others: https://github.com/jOOQ/jOOQ/issues/2656 Unfortunately, this is non trivial to implement and only benefits

Case insensitive Table.field or generating fields using lowercased column names?

2019-04-26 Thread rarulis
I'm working with a legacy database and I'd rather not rename database fields. Annoyingly, the names aren't consistent. Some tables have a column ID, others id. I want to pass some sort parameter at run time to queries and Table.field is case-sensitive. I looked at generator/matcher strategies