You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having executed a query and having obtained a ResultSet rs, I should normally be able to:
while(rs.next() {
string val = rs.getString(colnum);
if (rs.wasNull()) {
// Do something special in case string was NULL
} else {
// Assume val is not NULL
}
}
I should not have to also check for val==null.
Actual behavior
wasNull() in OrientDB JDBC driver simply always returns false.
The text was updated successfully, but these errors were encountered:
OrientDB Version: 3.0.3
Java Version: 1.8.0_121-b13
OS: Windows 10
Expected behavior
When having executed a query and having obtained a ResultSet
rs
, I should normally be able to:I should not have to also check for
val==null
.Actual behavior
wasNull()
in OrientDB JDBC driver simply always returnsfalse
.The text was updated successfully, but these errors were encountered: