diff src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java @ 223:e8139dbe3883

Rename internal method MonetDriver.getJavaType() into MonetDriver.getJdbcSQLType()
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 03 May 2018 13:52:56 +0200 (2018-05-03)
parents c38d4eaf5479
children 51e886d7f3b4 d4baf8a4b43a
line wrap: on
line diff
--- a/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
+++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
@@ -201,7 +201,7 @@ public class MonetResultSet
 		} catch (SQLException se) { /* ignore it */ }
 
 		for (int i = 0; i < types.length; i++) {
-			int javaSQLtype = MonetDriver.getJavaType(types[i]);
+			int javaSQLtype = MonetDriver.getJdbcSQLType(types[i]);
 			if (javaSQLtype == Types.CLOB) {
 				if (connection != null && connection.mapClobAsVarChar())
 					javaSQLtype = Types.VARCHAR;