Fix SQL syntax error in jdbcTemplate update docs

Update the reference guide jdbcTemplate update example to include the
column name.

Issue: SPR-10625
This commit is contained in:
Phillip Webb 2013-06-25 22:20:41 -07:00
parent 2abec6fd90
commit 5ee6bb9b9b
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ private static final class ActorMapper implements RowMapper<Actor> {
"Leonor", "Watling");</programlisting>
<programlisting language="java">this.jdbcTemplate.update(
"update t_actor set = ? where id = ?",
"update t_actor set last_name = ? where id = ?",
"Banjo", 5276L);</programlisting>
<programlisting language="java">this.jdbcTemplate.update(