> Is there a complementary Record.fromMap() that does the opposite of > Record.intoMap() ?
Good point, no that doesn't exist yet. It would be consistent with Record.from() / Record.into(), which is implemented for POJOs / arrays, etc I'll add it to the roadmap. Should be simple to implement: https://github.com/jOOQ/jOOQ/issues/1986 > Or can the record.from() handle a map as a parameter? No, it cannot. Maybe it should? I'll think about it. > I'd > obviously like to do converting back and forth from maps :) I had recently thought about whether I should let Record implement Map (similar to Result implementing List). But from a generic typesafety point of view, that might not be such a good idea...
