Add a new type to the SDO_DAS_DataFactory, defined by its namespace and type name. The type becomes part of the model of data objects that the data factory can create.
The namespace of the type.
The name of the type.
This array holds one or more key=>value pairs to set attribute values for the type. The optional keywords are:
None.
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.
The following adds a new data object type of 'CompanyType' where that type belongs to the namespace 'CompanyNS'.
<?php $df->addType('CompanyNS', 'CompanyType'); ?>
Please login to continue.