Changeset: 6bf8c2c10e53 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=6bf8c2c10e53
Modified Files:
java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java
Branch: default
Log Message:
We do can support the getNString() methods, as they will return exactly the
same as getString().
diffs (12 lines):
diff --git a/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java
b/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java
--- a/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java
+++ b/java/src/nl/cwi/monetdb/jdbc/MonetResultSet.java
@@ -1941,7 +1941,7 @@ public class MonetResultSet extends Mone
* not support this method
*/
public String getNString(int columnIndex) throws SQLException {
- throw new SQLFeatureNotSupportedException("getNString() not
supported", "0A000");
+ return getString(columnIndex);
}
/**
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list