| 
 | SDO_DAS_DataFactory::addPropertyToTypeAdds a property to a type Description
   void SDO_DAS_DataFactory::addPropertyToType
    ( string  $parent_type_namespace_uri, string$parent_type_name, string$property_name, string$type_namespace_uri, string$type_name[, array$options] )Warning This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. Adds a property to a type. The type must already be known to the SDO_DAS_DataFactory (i.e. have been added using addType()). The property becomes a property of the type. This is how the graph model for the structure of an SDO_DataObject is built. Parameters
 
 Return ValuesNone. Changelog
 
 Examples
 Example #1 A SDO_DAS_DataFactory::addPropertyToType example The following adds an 'addressline' property to a Person type. The person type is identified by its namespace, 'PersonNS', and type name, 'PersonType'. The type of the 'addressline' property is a many-valued SDO data type (primitive) with namespace 'commonj.sdo' and type name 'String'. 
<?php |