From 5ee6bb9b9bde7f3e1507045e8b1da845a0e59403 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 25 Jun 2013 22:20:41 -0700 Subject: [PATCH] Fix SQL syntax error in jdbcTemplate update docs Update the reference guide jdbcTemplate update example to include the column name. Issue: SPR-10625 --- src/reference/docbook/jdbc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/docbook/jdbc.xml b/src/reference/docbook/jdbc.xml index 7db4b16caf6..64680051538 100644 --- a/src/reference/docbook/jdbc.xml +++ b/src/reference/docbook/jdbc.xml @@ -383,7 +383,7 @@ private static final class ActorMapper implements RowMapper<Actor> { "Leonor", "Watling"); this.jdbcTemplate.update( - "update t_actor set = ? where id = ?", + "update t_actor set last_name = ? where id = ?", "Banjo", 5276L); this.jdbcTemplate.update(