diff --git a/jOOQ-website/src/main/resources/manual-2.5.xml b/jOOQ-website/src/main/resources/manual-2.5.xml index b3f757f7a8..ee7e28f2c6 100644 --- a/jOOQ-website/src/main/resources/manual-2.5.xml +++ b/jOOQ-website/src/main/resources/manual-2.5.xml @@ -4056,8 +4056,75 @@ create.select(LAST_NAME, COUNT1, COUNT2)
- Batch execution - + Using JDBC batch operations + +

JDBC batch operations

+

+ With JDBC, you can easily execute several statements at once using the addBatch() method. Essentially, there are two modes in JDBC +

+ + + +

+ In code, this looks like the following snippet: +

+ + + +

This will also be supported by jOOQ

+

+ jOOQ supports executing queries in batch mode as follows: +

+ + +