String string = stmt.getString(index);
return (T) (string == null ? null : new UInteger(string));
}
else if (type == ULong.class) {
String string = stmt.getString(index);
return (T) (string == null ? null : new ULong(string));
}
// The type byte[] is handled earlier. byte[][] can be handled here
else if (type.isArray()) {
return (T) convertArray(stmt.getObject(index), (Class<? extends Object[]>)type);