jOOQ version 3.10.5
I developing against an Oracle 12c DB but deploying to an 11g.
I don't think it matters but the code generation was done against the 12c.
In my jOOQ query, I have .offset(...) and .limit(...).
When I run against the 11g DB, jOOQ sometimes generates the proper rownum format for emulating the offset and limit.
Sometimes, however, it generates the offset 0 rows fetch next ? rows only form.
Is there a way to specify the Oracle version or to specify the form of the offset/limit generation?
Thanks
Andrew