Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
1.0-JSR-5
-
None
-
None
Description
GroovyRowResult.getProperty always raise exception when field value is null
I offer implementation of getProperty(String property):
public Object getProperty(String property) {
try {
Object value = result.get(property);
if (value==null && !result.containsKey(property))
return(value);
}
catch (Exception e)
}