FileDocCategorySizeDatePackage
PersonLocationTypRef.javaAPI DocExample1412Fri Feb 23 14:16:22 GMT 2001None

PersonLocationTypRef

public class PersonLocationTypRef extends Object implements oracle.sql.CustomDatumFactory, oracle.sql.CustomDatum

Fields Summary
public static final String
_SQL_BASETYPE
public static final int
_SQL_TYPECODE
oracle.sql.REF
_ref
static final PersonLocationTypRef
_PersonLocationTypRefFactory
Constructors Summary
public PersonLocationTypRef()

  
Methods Summary
public oracle.sql.CustomDatumcreate(oracle.sql.Datum d, int sqlType)

    if (d == null) return null;
    PersonLocationTypRef r = new PersonLocationTypRef();
    r._ref = (REF) d;
    return r;
  
public static oracle.sql.CustomDatumFactorygetFactory()

     
  
    return _PersonLocationTypRefFactory;
  
public PersonLocationTypgetValue()

     return (PersonLocationTyp) PersonLocationTyp.getFactory().create(
       _ref.getSTRUCT(), OracleTypes.REF);
  
public voidsetValue(PersonLocationTyp c)

    _ref.setValue((STRUCT) c.toDatum(_ref.getConnection()));
  
public oracle.sql.DatumtoDatum(oracle.jdbc.driver.OracleConnection c)

    return _ref;