{ return create(null, d, sqlType); }
protected ORAData create(OracleSdoPointType o, Datum d, int sqlType) throws SQLException
{
if (d == null) return null;
if (o == null) o = new OracleSdoPointType();
o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
return o;
}