> I'm in the middle of a 2.4 -> 2.5 upgrade and I've found that my generated > table record appears to be non-updatable): > > [...] > > Is there some property of the source database that JOOQ reads when > generating table records that indicates whether a table is not updatable > (I'm using HSQLDB to do the codegen)?
The only criteria for jOOQ to decide whether a table is updatable is the fact whether it finds a primary key (or at least one unique key) on it. Did your meta-data change? Can you provide log4j debug-log output from your code generation? The relevant parts would be where primary keys are fetched Cheers Lukas
