<jOOQ upsert a pojo> Feeling a bit stupid, but I h...
# stackoverflow
u
jOOQ upsert a pojo Feeling a bit stupid, but I have a simple architecture where the repositories are the only ones accessing ~Record classes and the services work on POJOs. So basic flow is repository fetches into POJO service modifies POJO repository receives POJO to update DB repository matches updated POJO to record repository stores (insert or update) the record repository maps updated record (may have received generated values from insert) back to POJO service receives updated POJO i.e. something like fun...