Thanks, I'll look into it.
As an aside, wasNull() is primarily intended for null checks when
retrieving primitive values (as those report the "default" value of
0/0.0/false for NULL). If you use an object result (like returned by
getObject(..)), the nullness will also be reported by the value being
null. So, as a workaround, you can use `if (value == null)` instead of
`if (rs.wasNull())`.
Mark
--
Mark Rotteveel