How to deserialize JSON from Postgres row_to_json() back to Table record in Jooq? – Postgresql
I'm trying to get a Jooq Table record from json produced with postgres row_to_json(). I have a Table called InventoryItem in Postgres with the following schema: CREATE TABLE "InventoryItem" ( "id" BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, "price_per_100_units"…