7 ms·
> ditch ORMs ... make good use of SQL I think Java (or other JVM languages) are then best positioned, because of jooq. Still the best SQL generation library I'
by ackfoobar 6mo ago
> ditch ORMs ... make good use of SQL
I think Java (or other JVM languages) are then best positioned, because of jooq. Still the best SQL generation library I've used.
- vincnetas 6mo agothumbs up for jooq
- matwood 6mo agoAnytime I use a language other than Java it's always jooq that I miss. It's that good.
- wcallahan 6mo agoJooq with Kotlin for a back-end has been the best of both worlds for me. Much cleaner, shorter code and type safety with Postgres (my schema tends to be highly normalized too). And these days I’ve got it well integrated with Zod for type safe JS/TS front-ends as well.
- anotherevan 6mo agoI'm rather partial to MyBatis (and Liquibase) but I might have to give Jooq a try.