JOOQ: The easiest way to write SQL in Java(jooq.org)1 points·by Tomte·2 เดือนที่ผ่านมา·2 commentsjooq.orgJOOQ: The easiest way to write SQL in Javahttps://www.jooq.org/2 commentsPost comment[–]pmontra·2 เดือนที่ผ่านมาreplyThe easiest way is still too verbose. I quote an example. After a record got into r: Integer id = r.getValue(AUTHOR.ID); String firstName = r.getValue(AUTHOR.FIRST_NAME); String lastName = r.getValue(AUTHOR.LAST_NAME); I would expect r.id r.first_name r.last_name If the ORM has to create the classes for the tables, let it do it.[–]lukaseder·2 เดือนที่ผ่านมาreplyYou get that in Kotlin. Or r.getId(), r.getFirstName(), etc. in Java. So what's the issue here?
I would expect
If the ORM has to create the classes for the tables, let it do it.