cem Fri Oct 7 08:26:25 2005 EDT
Modified files: /phpdoc/en/reference/sdo reference.xml Log: Update for 0.5.2 release http://cvs.php.net/diff.php/phpdoc/en/reference/sdo/reference.xml?r1=1.15&r2=1.16&ty=u Index: phpdoc/en/reference/sdo/reference.xml diff -u phpdoc/en/reference/sdo/reference.xml:1.15 phpdoc/en/reference/sdo/reference.xml:1.16 --- phpdoc/en/reference/sdo/reference.xml:1.15 Sun Sep 4 15:39:27 2005 +++ phpdoc/en/reference/sdo/reference.xml Fri Oct 7 08:26:25 2005 @@ -1,5 +1,5 @@ <?xml version='1.0' encoding='iso-8859-1'?> -<!-- $Revision: 1.15 $ --> +<!-- $Revision: 1.16 $ --> <!-- Purpose: database.abstract --> <!-- Membership: pecl --> <!-- State: experimental --> @@ -96,11 +96,10 @@ The Relational DAS also needs special attention as it is written in PHP. </para> - <para> - The instructions are likely to change as PHP 5.1 progresses in status - from beta to stable release. The instructions here were correct on 11th - August 2005, when PHP 5.1.0b3 was the current beta release of - PHP, and 0.5.1 was the current beta release of SDO. + <para> The instructions are likely to change as PHP 5.1 progresses in status from beta to + stable release. The instructions here were correct on 6th October 2005, when PHP + 5.1.0RC1 was the current release candidate for PHP, and 0.5.2 was the current beta + release of SDO. </para> <para> The options are summarised in the following table: @@ -122,16 +121,11 @@ <itemizedlist> <listitem> <para> - You will find the latest DLLs for the SDO core and the - XML DAS at the PHP snaps site. Follow the link to - <ulink url='&url.pecl.get.win.unstable;'> - "PECL extensions for the unstable win32 branch" - </ulink> - for the list of recently built DLLs. The latest sdo core DLL is - <filename>php_sdo.dll</filename> - and the latest XML DAS DLL is - <filename>php_sdo_das_xml.dll</filename> - . + The latest DLLs for the SDO core and the XML DAS can be downloaded from + <ulink url='&url.pecl.win.ext;php_sdo.dll'>php_sdo + </ulink> and + <ulink url='&url.pecl.win.ext;php_sdo_das_xml.dll'>php_sdo_das_xml + </ulink> respectively. </para> </listitem> <listitem> @@ -188,12 +182,9 @@ pear install -B <package name and level> </command> </para> - <para> - Substitute the desired package name and level - <varname>sdo-0.5.0</varname>, - or - <varname>sdo-0.5.1</varname>, - for example, in the command above. + <para> + Substitute the desired package name and level, for example + <varname>sdo-0.5.2</varname>, in the command above. </para> </listitem> </itemizedlist> @@ -212,11 +203,8 @@ </command> </para> <para> - Substitute the desired package name and level - <varname>sdo-0.5.0</varname>, - or - <varname>sdo-0.5.1</varname>, - for example, in the command above. + Substitute the desired package name and level, for example + <varname>sdo-0.5.2</varname>, in the command above. </para> <para> This command will build the SDO and XML shared libraries as well as @@ -348,29 +336,6 @@ There is no support for multi-byte character sets. </para> </step> - <step> - <para> - The class constants SDO_DAS_ChangeSummary::NONE, - SDO_DAS_ChangeSummary::MODIFICATION, - SDO_DAS_ChangeSummary::ADDITION, - SDO_DAS_ChangeSummary::DELETION are unavailable, - because of an outstanding problem. - </para> - <para> - As a bypass, the global constants - SDO_DAS_CHANGE_SUMMARY_NONE, - SDO_DAS_CHANGE_SUMMARY_MODIFICATION, - SDO_DAS_CHANGE_SUMMARY_ADDITION, - SDO_DAS_CHANGE_SUMMARY_DELETION are provided. - </para> - </step> - <step> - <para> - You may see problems when serializing and unserializing graphs - which include non-containment references. - We are working on these. - </para> - </step> </procedure> <procedure id='sdo.limitations.sdo'> <title>SDO Limitations</title> @@ -402,11 +367,6 @@ </step> <step> <para> - Default property values. - </para> - </step> - <step> - <para> Read-only properties. </para> </step> @@ -768,7 +728,7 @@ <programlisting role="php" id="sdo.examples.unsetrefdo"> <![CDATA[ <?php - if (isset($company->employeeOfTheMonth) { + if (isset($company->employeeOfTheMonth)) { unset($company->employeeOfTheMonth); } ?>