rubyObject = runtime.newString(new ByteList(bytes, false));
} else if(value instanceof Clob) {
String str = ((Clob)value).getSubString(1, (int)((Clob)value).length());
rubyObject = runtime.newString(str);
} else if(value instanceof BigDecimal) {
rubyObject = new RubyBigDecimal(runtime, (BigDecimal)value);
} else {
rubyObject = JavaUtil.convertJavaToRuby(runtime, value);
}
String name = propertyName.toLowerCase();