ResultSet getDouble() returns 0.0 if a value is NULL in the database. This can be checked using "ResultSet wasNull()" which returns a boolean to check if the last read value was NULL.
But, my database also holds EMPTY values? These are also converted to 0.0, and I don't find a way to check if a column has been empty.
The picture shows the result before I set the value to NULL. It is "EMPTY". So the wasNull() function does not work for my case.
This question is not about an empty result set, but rather empty values in a column.