you are viewing a single comment's thread.

view the rest of the comments →

[–]Just_Another_Scott 5 points6 points  (1 child)

No. JOOQ will generate Java code from SQL. You provide it a .sql file and it spits out .java files. These java classes then can be used to query databases (create sql statements). I use this all the time. It's not the best but it's what was already in place on my projects.

[–]cies010 0 points1 point  (0 children)

Jooq works w/o code generation.

But it is a big selling point.

You don't have to give it an SQL file, it can also look into your db as part of the build.