Browse Source

fixed duplicate section ids

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4476 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/merge
Thomas Risberg 15 years ago
parent
commit
e8404a33ee
  1. 8
      spring-framework-reference/src/jdbc.xml

8
spring-framework-reference/src/jdbc.xml

@ -1368,7 +1368,7 @@ dataSource.setPassword("");</programlisting>
processing using both the <classname>JdbcTemplate</classname> and the processing using both the <classname>JdbcTemplate</classname> and the
<classname>SimpleJdbcTemplate</classname>.</para> <classname>SimpleJdbcTemplate</classname>.</para>
<section id="jdbc-advanced-classic"> <section id="jdbc-batch-classic">
<title>Basic batch operations with the JdbcTemplate</title> <title>Basic batch operations with the JdbcTemplate</title>
<para>You accomplish <classname>JdbcTemplate</classname> batch <para>You accomplish <classname>JdbcTemplate</classname> batch
@ -1418,7 +1418,7 @@ dataSource.setPassword("");</programlisting>
you to signal the end of the batch.</para> you to signal the end of the batch.</para>
</section> </section>
<section id="jdbc-advanced-simple"> <section id="jdbc-batch-list">
<title>Batch operations with a List of objects</title> <title>Batch operations with a List of objects</title>
<para>Both the <classname>JdbcTemplate</classname> and the <para>Both the <classname>JdbcTemplate</classname> and the
@ -1489,7 +1489,7 @@ dataSource.setPassword("");</programlisting>
driver returns a -2 value.</para> driver returns a -2 value.</para>
</section> </section>
<section id="jdbc-advanced-simple"> <section id="jdbc-batch-multi">
<title>Batch operations with multiple batches</title> <title>Batch operations with multiple batches</title>
<para>The last example of a batch update deals with batches that are so <para>The last example of a batch update deals with batches that are so
@ -1502,7 +1502,7 @@ dataSource.setPassword("");</programlisting>
<classname>ParameterizedPreparedStatementSetter</classname> to set the <classname>ParameterizedPreparedStatementSetter</classname> to set the
values for the parameters of the prepared statement. The framework loops values for the parameters of the prepared statement. The framework loops
over the provided values and breaks the update calls into batches of the over the provided values and breaks the update calls into batches of the
size specified. </para> size specified.</para>
<para>This example shows a batch update using a batch size of <para>This example shows a batch update using a batch size of
100:</para> 100:</para>

Loading…
Cancel
Save