From 38041acc8773bcd70d6c35dfe02d001f1597ae1a Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Mon, 6 Jun 2011 13:30:41 +0000 Subject: [PATCH] fixed duplicate section ids --- spring-framework-reference/src/jdbc.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-framework-reference/src/jdbc.xml b/spring-framework-reference/src/jdbc.xml index db70eb2dff..f5ff5d2b32 100644 --- a/spring-framework-reference/src/jdbc.xml +++ b/spring-framework-reference/src/jdbc.xml @@ -1368,7 +1368,7 @@ dataSource.setPassword(""); processing using both the JdbcTemplate and the SimpleJdbcTemplate. -
+
Basic batch operations with the JdbcTemplate You accomplish JdbcTemplate batch @@ -1418,7 +1418,7 @@ dataSource.setPassword(""); you to signal the end of the batch.
-
+
Batch operations with a List of objects Both the JdbcTemplate and the @@ -1489,7 +1489,7 @@ dataSource.setPassword(""); driver returns a -2 value.
-
+
Batch operations with multiple batches The last example of a batch update deals with batches that are so @@ -1502,7 +1502,7 @@ dataSource.setPassword(""); ParameterizedPreparedStatementSetter to set the values for the parameters of the prepared statement. The framework loops over the provided values and breaks the update calls into batches of the - size specified. + size specified. This example shows a batch update using a batch size of 100: