fixed null handling for all Derby drivers to be the same as for the embedded driver (SPR-6000)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2219 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Thomas Risberg
2009-10-28 17:14:47 +00:00
parent d113003f93
commit f3e4d94a57
@@ -238,7 +238,7 @@ public abstract class StatementCreatorUtils {
else if (databaseProductName.startsWith("DB2") ||
jdbcDriverName.startsWith("jConnect") ||
jdbcDriverName.startsWith("SQLServer")||
jdbcDriverName.startsWith("Apache Derby Embedded")) {
jdbcDriverName.startsWith("Apache Derby")) {
sqlType = Types.VARCHAR;
}
}