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 and there doesn't seem to be any way to create table fields with lowercased name when createField is called. it seems you can just affect the way the java variables names. For now I just created my own field method that iterates through the table fields and checks after lowercasing. Thanks. -- 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.
