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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user