diff --git a/reference/sdo/reference.xml b/reference/sdo/reference.xml
index 9da3fb793a..900d085ae9 100644
--- a/reference/sdo/reference.xml
+++ b/reference/sdo/reference.xml
@@ -1,5 +1,5 @@
-
+
@@ -123,8 +123,7 @@
The latest DLLs for the SDO core and the XML DAS can be
downloaded from
- php_sdo
- and
+ php_sdo and
php_sdo_das_xml
respectively.
@@ -133,8 +132,7 @@
Check out the Relational DAS from CVS to somewhere on the
PHP
- include_path
- .
+ include_path.
@@ -152,8 +150,7 @@
Check out the Relational DAS from CVS to somewhere on the
PHP
- include_path
- .
+ include_path.
@@ -246,8 +243,7 @@ extension=sdo_das_xml.so
update your
include_path
in &php.ini; to point to the directory that contains
- sdo/DAS/Relational
- .
+ sdo/DAS/Relational.
Building SDO on Linux
@@ -373,7 +369,7 @@ extension=sdo_das_xml.so
- XMLHelper/XSDHelper (the XML DAS provide a lot of this functionality)
+ XMLHelper/XSDHelper (the XML DAS provides a lot of this functionality)
@@ -696,7 +692,7 @@ sdoxml:propertyType="company:EmployeeType"/>
createDataObject('employees');
$new_hire->name = 'John Johnson';
$new_hire->SN = 'E0005';
@@ -959,9 +955,7 @@ sdoxml:propertyType="company:EmployeeType"/>
Adding to a sequence
We can add new values to a sequence using the
-
- SDO_Sequence::insert
-
+ SDO_Sequence::insert
method. The following examples assume that the 'firstName' and
'lastName' properties are initially unset.
@@ -977,7 +971,7 @@ sdoxml:propertyType="company:EmployeeType"/>
// Append a lastName value to the sequence
// value: 'Jones'
// sequence index: NULL (append)
- // property identifier: 'lastName' (lastName property name)
+ // propertyIdentifier: 'lastName' (lastName property name)
$letters_seq->insert('Jones', NULL, 'lastName');
// Append unstructured text
@@ -1156,16 +1150,14 @@ manager
-
- getSequence
- - get the sequence for the data object
+ getSequence
+ - get the sequence for the data object
-
- createDataObject
- - create a child data object
+ createDataObject
+ - create a child data object
@@ -1176,9 +1168,7 @@ manager
-
- getContainer
-
+ getContainer
- get the container (also known as 'parent') of this data object
@@ -1204,17 +1194,13 @@ manager
-
- getPropertyIndex
-
+ getPropertyIndex
- get the property index for a given sequence index
-
- getPropertyName
-
+ getPropertyName
- get the property name for a given sequence index
@@ -1303,32 +1289,28 @@ manager
-
- __construct
- - construct a new SDO_Model_ReflectionDataObject.
+ __construct
+ - construct a new SDO_Model_ReflectionDataObject.
-
- getType
- - get the SDO_Model_Type for the data object.
+ getType
+ - get the SDO_Model_Type for the data object.
- getInstanceProperties
- - get the instance properties of the data object.
+ 'function.SDO-Model-ReflectionDataObject-getInstanceProperties'>getInstanceProperties
+ - get the instance properties of the data object.
- getContainmentProperty
- - get the parent's SDO_Model_Property which defines the
+ 'function.SDO-Model-ReflectionDataObject-getContainmentProperty'>getContainmentProperty
+ - get the parent's SDO_Model_Property which defines the
containment relationship to the reflected data object.
@@ -1350,65 +1332,56 @@ manager
-
- getName
- - get the name of the type.
+ getName
+ - get the name of the type.
-
- getNamespaceURI
- - get the namespace URI of the type.
+ getNamespaceURI
+ - get the namespace URI of the type.
-
- isInstance
- - test for a data object being an instance of the type.
+ isInstance
+ - test for a data object being an instance of the type.
-
- getProperties
- - get the properties of the type.
+ getProperties
+ - get the properties of the type.
-
- getProperty
- - get a property of the type.
+ getProperty
+ - get a property of the type.
-
- isDataType
- - test to see if this type is a primitive scalar type.
+ isDataType
+ - test to see if this type is a primitive scalar type.
-
- isSequencedType
- - test to see if this is a sequenced type.
+ isSequencedType
+ - test to see if this is a sequenced type.
-
- isOpenType
- - test to see if this is an open type.
+ isOpenType
+ - test to see if this is an open type.
-
- getBaseType
- - get the base type of this type (if one exists).
+ getBaseType
+ - get the base type of this type (if one exists).
@@ -1430,44 +1403,38 @@ manager
-
- getName
- - get the name of the property.
+ getName
+ - get the name of the property.
-
- getType
- - get the type of the property.
+ getType
+ - get the type of the property.
-
- isMany
- - test to see if the property is many-valued..
+ isMany
+ - test to see if the property is many-valued..
-
- isContainment
- - test to see if the property describes a containment relationship.
+ isContainment
+ - test to see if the property describes a containment relationship.
-
- getContainingType
- - get the type which contains this property.
+ getContainingType
+ - get the type which contains this property.
-
- getDefault
- - get the default value for a property.
+ getDefault
+ - get the default value for a property.
@@ -1490,9 +1457,7 @@ manager
The interface through which a Data Access Service can access
a data object's
-
- SDO_DAS_ChangeSummary
- .
+ SDO_DAS_ChangeSummary.
The change summary is used by the Data Access Service to check for
conflicts when applying changes back to a data source.
@@ -1500,9 +1465,7 @@ manager
-
- getChangeSummary
-
+ getChangeSummary
- get the change summary for a data object
@@ -1535,57 +1498,43 @@ manager
-
- beginLogging
-
+ beginLogging
- begin logging changes made to a data object
-
- endLogging
-
+ endLogging
- end logging changes made to a data object
-
- isLogging
-
+ isLogging
- test to see if change logging is on
-
- getChangedDataObjects
-
+ getChangedDataObjects
- get a list of the data objects which have been changed
-
- getChangeType
-
+ getChangeType
- get the type of change which has been made to a data object
-
- getOldValues
-
+ getOldValues
- get a list of old values for a data object
-
- getOldContainer
-
+ getOldContainer
- get the old container data object for a deleted data object
@@ -1609,42 +1558,34 @@ manager
-
- getPropertyIndex
-
+ getPropertyIndex
- get the property index for the changed property
-
- getPropertyName
-
+ getPropertyName
- get the property name for the changed property
-
- getValue
-
+ getValue
- get the old value for the changed property
-
- getListIndex
-
+ getListIndex
- get the list index for the old value if it was part of a
many-valued property
- isSet
+ isSet
- test to see if the property was set prior to being modified
-
+
@@ -1669,9 +1610,7 @@ manager
-
- getDataFactory
-
+ getDataFactory
- static methods for getting a concrete data factory instance
@@ -1679,9 +1618,7 @@ manager
-
- addType
-
+ addType
- add a new type to the SDO model
@@ -1689,9 +1626,7 @@ manager
-
- addPropertyToType
-
+ addPropertyToType
- add a new property to a type definition in the SDO model