|
|
|
|
|
by gregopet
1930 days ago
|
|
Another jOOQ fanboy here - it's not just the manual that shows DSL->SQL, you can just .toString() most of jOOQ constructs in your code and get the raw SQL out. In fact, I believe you can just take that .toString() and put it straight into your prepared statement if you don't want jOOQ to run your queries and just use it for query composition. |
|
If you always want the vendor specific SQL string, use DSLContext.render(QueryPart)