SDO_DataObject::createDataObject

(^) Create a child SDO_DataObject SDO_DataObject SDO_DataObject::createDataObject ( mixed $identifier ) Create a child SDO_DataObject of the default type for the property identified. The data object is automatically inserted into the tree and a reference to it is returned. Parameters: identifier Identifies the property for the data object type to be created. Can be eith

SDO_List::insert

(^) Insert into a list void SDO_List::insert ( mixed $value [, int $index ] ) Insert a new element at a specified position in the list. All subsequent list items are moved up. Parameters: value The new value to be inserted. This can be either a primitive or an SDO_DataObject. index The position at which to insert the new element. If

SDO_DAS_DataFactory::getDataFactory

(^) Get a data factory instance SDO_DAS_DataFactory SDO_DAS_DataFactory::getDataFactory ( void ) Static method to get an instance of an SDO_DAS_DataFactory. This instance is initially only configured with the basic SDO types. A Data Access Service is responsible for populating the data factory model and then allowing PHP applications to create SDOs based on the model through the SDO_DataFactory interface. PHP applications

SDO_DAS_Setting::getPropertyName

(^) Get the property name for a changed property string SDO_DAS_Setting::getPropertyName ( void ) Returns the property name for the changed property. This name identifies the property which was modified in data object. Returns: The property name for a changed property. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding do

SDO_DAS_Setting::getValue

(^) Get the old value for the changed property mixed SDO_DAS_Setting::getValue ( void ) Returns the old value for the changed property. This can be used by a Data Access Service when writing updates to a data source. The DAS uses the old value to detect conflicts by comparing it with the current value in the data source. If they do not match, then the data source has been updated since the data object was originally popula

SDO_DAS_Setting::isSet

(^) Test whether a property was set prior to being modified bool SDO_DAS_Setting::isSet ( void ) Test whether a property was set prior to being modified. If it was set prior to being modified then the SDO_DAS_Setting will also contain the old value. Returns: Returns TRUE if the property was set prior to being modified, otherwise returns FALSE. This function i

SDO_DAS_Setting::getPropertyIndex

(^) Get the property index for a changed property int SDO_DAS_Setting::getPropertyIndex ( void ) Returns the property index for the changed property. This index identifies the property which was modified in data object. Returns: The property index for a changed property. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding

SDO_DataFactory::create

(^) Create an SDO_DataObject void SDO_DataFactory::create ( string $type_namespace_uri, string $type_name ) Create a new SDO_DataObject given the data object's namespace URI and type name. Parameters: type_namespace_uri The namespace of the type. type_name The name of the type. Returns: Returns the newly cre

SDO_DAS_DataObject::getChangeSummary

(^) Get a data object's change summary SDO_DAS_ChangeSummary SDO_DAS_DataObject::getChangeSummary ( void ) Get the SDO_DAS_ChangeSummary for an SDO_DAS_DataObject, or NULL if it does not have one. Returns: Returns the SDO_DAS_ChangeSummary for an SDO_DAS_DataObject, or NULL if it does not have one. This function is EXPERIMENTAL. The behaviour of this function

SDO_DAS_Setting::getListIndex

(^) Get the list index for a changed many-valued property int SDO_DAS_Setting::getListIndex ( void ) Get the list index for a modification made to an element of a many-valued property. For example, if we modified the third element of a many-valued property we could obtain an SDO_DAS_Setting from the change summary corresponding to that modification. A call to getListIndex() on that setting would return the value 2 (lists a