I'm trying this query:

    dsl.select(MYTABLE.FIELD).from(MYTABLE).limit(10).offset(20).fetch()

The resulting SQL 

    select "MYTABLE"."FIELD" from "MYTABLE" limit ? offset ?

This is wrong, in Firebird. There is no "limit" or "offset", only "skip" 
and "first".

The correct sql command is this:

    select first 10 skip 20 "MYTABLE"."FIELD" from "MYTABLE"


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to