From f3928a6af3c6d0eb94a66ba5928d294586b2bbb4 Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Wed, 28 Oct 2009 22:25:58 +0000 Subject: [PATCH] fixed rertieval of generated keys for HSQLDB 1.9 and fixed some typos (SPR-6266) git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2222 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../springframework/jdbc/core/simple/AbstractJdbcInsert.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/core/simple/AbstractJdbcInsert.java b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/core/simple/AbstractJdbcInsert.java index 444f779804a..8c7e1db428e 100644 --- a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/core/simple/AbstractJdbcInsert.java +++ b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/core/simple/AbstractJdbcInsert.java @@ -418,7 +418,7 @@ public abstract class AbstractJdbcInsert { return kh.getKey(); } else { - throw new DataIntegrityViolationException("Unable to retreive the generated key for the insert: " + + throw new DataIntegrityViolationException("Unable to retrieve the generated key for the insert: " + getInsertString()); } }