Skip to content

Commit

Permalink
Fix C&P error in my last commit.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1658214 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
adrian-crum committed Feb 8, 2015
1 parent b24078a commit 3b2ca46
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ private static Map<String, JdbcValueHandler<?>> createJdbcValueHandlerMap() {
result.put("java.sql.Clob", new ClobJdbcValueHandler(Types.CLOB));
result.put("Clob", new ClobJdbcValueHandler(Types.CLOB));
// JDBC 4
result.put("RowId", new RowIdJdbcValueHandler(Types.ARRAY));
result.put("java.sql.RowId", new RowIdJdbcValueHandler(Types.ARRAY));
result.put("RowId", new RowIdJdbcValueHandler(Types.ROWID));
result.put("java.sql.RowId", new RowIdJdbcValueHandler(Types.ROWID));
// Non-JDBC Types
result.put("java.lang.Object", new ObjectJdbcValueHandler(Types.BLOB));
result.put("Object", new ObjectJdbcValueHandler(Types.BLOB));
Expand Down

0 comments on commit 3b2ca46

Please sign in to comment.