boolean result = true ;
int col = findColumnOfType(XArray.class) ;
if (col < 0) log.println("Type not found in relation: not tested");
else {
try {
XArray getVal = oObj.getArray(col) ;
} catch (SQLException e) {
log.println("Unexpected SQL exception:") ;
log.println(e) ;
result = false ;
}