I'm not quite sure what you mean. As in the following example?

    BatchBindStep b = ctx.batch(...);
    for (int i = ...) {
        b.bind(...);
    }
    b.execute();

Even if most of jOOQ's API is a DSL, it can still be used as any regular
Java API. Every method has a return type, which can be stored in a local
variable for subsequent calls. This also holds true for dynamic SQL, of
course.

Cheers
Lukas


2013/7/2 Venkat Sadasivam <[email protected]>

> I see example of batch update here.
> http://www.jooq.org/doc/3.1/manual-single-page/#batch-execution
>
> How I can do the same in for loop?
>
> --
> 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/groups/opt_out.
>
>
>

-- 
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/groups/opt_out.


Reply via email to