SDO_Model_Property::isContainment

(^) Test to see if the property defines a containment relationship bool SDO_Model_Property::isContainment ( void ) Test to see if the property corresponds to a containment relationship. Returns TRUE if the property defines a containment relationship, or FALSE if it is reference. Returns: Returns TRUE if the property defines a containment relationship, or FALSE if it is reference.

SDO_Model_Property::getType

(^) Get the SDO_Model_Type of the property SDO_Model_Type SDO_Model_Property::getType ( void ) Get the SDO_Model_Type of the property. The SDO_Model_Type describes the type information for the property, such as its type name, namespace URI, whether it is a primitive data type, and so on. Returns: Returns the SDO_Model_Type describing the property's type information.

SDO_Model_Property::getName

(^) Get the name of the SDO_Model_Property string SDO_Model_Property::getName ( void ) Returns the name of the SDO_Model_Property. Returns: Returns the name of the SDO_Model_Property. 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

SDO_Model_Property::getDefault

(^) Get the default value for the property mixed SDO_Model_Property::getDefault ( void ) Returns the default value for the property. Only primitive data type properties can have default values. Returns: Returns the default value for the property. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change

SDO_Model_Property::getContainingType

(^) Get the SDO_Model_Type which contains this property SDO_Model_Type SDO_Model_Property::getContainingType ( void ) Returns the SDO_Model_Type which contains this property. Returns: Returns the SDO_Model_Type which contains this property. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change withou

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_Exception::getCause

(^) Get the cause of the exception. mixed SDO_Exception::getCause ( void ) Returns the cause of this exception or NULL if the cause is nonexistent or unknown. Typically the cause will be an SDO_CPPException object, which may be used to obtain additional diagnostic information. Returns: Returns the cause of this exception or NULL if the cause is nonexistent or unknown.

SDO_DataObject::getTypeNamespaceURI

(^) Return the namespace URI of the type for a data object. string SDO_DataObject::getTypeNamespaceURI ( void ) Return the namespace URI of the type for a data object. A convenience method corresponding to SDO_Model_ReflectionDataObject::getType().getNamespaceURI(). Returns: The namespace URI of the type for the data object. This function is EXPERIMENTAL. The

SDO_DataObject::getTypeName

(^) Return the name of the type for a data object. string SDO_DataObject::getTypeName ( void ) Return the name of the type for a data object. A convenience method corresponding to SDO_Model_ReflectionDataObject::getType().getName(). Returns: The name of the type for the data object. This function is EXPERIMENTAL. The behaviour of this function, its name, and

SDO_DataObject::getSequence

(^) Get the sequence for a data object SDO_Sequence SDO_DataObject::getSequence ( void ) Return the SDO_Sequence for this SDO_DataObject. Accessing the SDO_DataObject through the SDO_Sequence interface acts on the same SDO_DataObject instance data, but preserves ordering across properties. Returns: The SDO_Sequence for this SDO_DataObject, or returns NULL if the SDO_DataObject is not of a type w