How to use jOOQ RecordUnmapper?
问题 I'm trying to implement a jOOQ RecordUnmapper to adjust a record that I will later insert/update. My attempt below, problem is that the Record class cannot be instantiated. How to create the Record object? Also, how to use the unmapper in insert/update? public class TableUnmapper implements RecordUnmapper<Table, Record> { @Override public Record unmap(Table t) throws MappingException { Record r = new Record(); // <-- this line does not compile r.from(t); r.set(TABLES.TITLE_FONT_FAMILY, t