philip Wed Feb 7 06:51:55 2007 UTC
Modified files:
/phpdoc/en language-snippets.ent
/phpdoc/en/reference/oracle reference.xml
/phpdoc/en/reference/oracle/functions ora-bind.xml ora-close.xml
ora-columnname.xml
ora-columnsize.xml
ora-columntype.xml
ora-commit.xml
ora-commitoff.xml
ora-commiton.xml ora-do.xml
ora-error.xml
ora-errorcode.xml
ora-exec.xml
ora-fetch-into.xml
ora-fetch.xml
ora-getcolumn.xml
ora-logoff.xml ora-logon.xml
ora-numcols.xml
ora-numrows.xml ora-open.xml
ora-parse.xml ora-plogon.xml
ora-rollback.xml
Log:
Documented ref.oci8 alternatives for each oracle function. Information taken
from user notes provided by christopher dot jones at oracle dot com.
And, added a changelog to each function mentioning ref.oracle is deprecated
as of PHP 5.1.0.
http://cvs.php.net/viewvc.cgi/phpdoc/en/language-snippets.ent?r1=1.189&r2=1.190&diff_format=u
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.189
phpdoc/en/language-snippets.ent:1.190
--- phpdoc/en/language-snippets.ent:1.189 Sun Jan 28 07:39:05 2007
+++ phpdoc/en/language-snippets.ent Wed Feb 7 06:51:54 2007
@@ -1,4 +1,4 @@
-<!-- $Revision: 1.189 $ -->
+<!-- $Revision: 1.190 $ -->
<!-- Keep 'em sorted -->
@@ -313,6 +313,14 @@
the oci8 driver, see the <link linkend="oci8.datatypes">datatypes
supported by the driver</link></para>'>
+<!ENTITY oracle.deprecated '<para>The <link linkend="ref.oracle">oracle</link>
+extension is deprecated in favor of <link linkend="ref.oci8">oci8</link>.
+</para>'>
+
+<!ENTITY oracle.replacement.desc 'When using <link
linkend="ref.oci8">oci8</link>
+as a replacement for the deprecated <link linkend="ref.oracle">oracle</link>
+extension, consider using: '>
+
<!-- PCNTL Notes -->
<!ENTITY pcntl.parameter.status '<para>The parameter
<parameter>status</parameter> is the status parameter supplied to a successfull
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/reference.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc/en/reference/oracle/reference.xml
diff -u phpdoc/en/reference/oracle/reference.xml:1.9
phpdoc/en/reference/oracle/reference.xml:1.10
--- phpdoc/en/reference/oracle/reference.xml:1.9 Tue Sep 6 22:34:43 2005
+++ phpdoc/en/reference/oracle/reference.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- Purpose: database.vendors -->
<!-- Membership: pecl, external -->
<!-- State: deprecated -->
@@ -11,9 +11,15 @@
<partintro>
<section id="oracle.intro">
&reftitle.intro;
+ <warning>
+ <para>
+ This extension is deprecated. Instead, use the improved
+ <link linkend="ref.oci8">oci8</link> extension. Functions
+ documented here do list recommended oci8 alternatives.
+ </para>
+ </warning>
<para>
This extension adds support for Oracle database server access.
- See also the <link linkend="ref.oci8">OCI8</link> extension.
</para>
<note>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-bind.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-bind.xml
diff -u phpdoc/en/reference/oracle/functions/ora-bind.xml:1.7
phpdoc/en/reference/oracle/functions/ora-bind.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-bind.xml:1.7 Tue Feb 6
01:46:47 2007
+++ phpdoc/en/reference/oracle/functions/ora-bind.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-bind">
<refnamediv>
<refname>ora_bind</refname>
@@ -122,6 +122,12 @@
</thead>
<tbody>
<row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ <row>
<entry>3.0.1</entry>
<entry>
The constants for the <parameter>type</parameter> were added.
@@ -156,6 +162,17 @@
</para>
</refsect1>
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_bind_by_name</function></member>
+ <member><function>oci_bind_array_by_name</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-close.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-close.xml
diff -u phpdoc/en/reference/oracle/functions/ora-close.xml:1.6
phpdoc/en/reference/oracle/functions/ora-close.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-close.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-close.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-close">
<refnamediv>
<refname>ora_close</refname>
@@ -41,6 +41,41 @@
functions.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_free_statement</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-columnname.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-columnname.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.6
phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-columnname.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-columnname">
<refnamediv>
<refname>ora_columnname</refname>
@@ -48,6 +48,41 @@
Returns the name as a string. The returned name is in all uppercase letters.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_field_name</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-columnsize.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-columnsize.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.6
phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-columnsize.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-columnsize">
<refnamediv>
<refname>ora_columnsize</refname>
@@ -49,6 +49,41 @@
Returns the size as an integer, or &false; on error.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_field_size</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-columntype.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-columntype.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.6
phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-columntype.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-columntype">
<refnamediv>
<refname>ora_columntype</refname>
@@ -60,6 +60,42 @@
</simplelist>
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_field_type</function></member>
+ <member><function>oci_field_type_raw</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-commit.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-commit.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commit.xml:1.7
phpdoc/en/reference/oracle/functions/ora-commit.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-commit.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-commit.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-commit">
<refnamediv>
<refname>ora_commit</refname>
@@ -47,6 +47,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_commit</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-commitoff.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-commitoff.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.7
phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-commitoff.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-commitoff">
<refnamediv>
<refname>ora_commitoff</refname>
@@ -43,6 +43,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member>Pass the <constant>OCI_DEFAULT</constant> flag to
<function>oci_execute</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-commiton.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-commiton.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.6
phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-commiton.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-commiton">
<refnamediv>
<refname>ora_commiton</refname>
@@ -43,6 +43,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_execute</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-do.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-do.xml
diff -u phpdoc/en/reference/oracle/functions/ora-do.xml:1.6
phpdoc/en/reference/oracle/functions/ora-do.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-do.xml:1.6 Tue Feb 6 01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-do.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-do">
<refnamediv>
<refname>ora_do</refname>
@@ -55,6 +55,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ There is no direct replacement for <function>ora_do</function> in
+ <link linkend="ref.oci8">oci8</link>. Instead, use a sequence of
+ <function>oci_parse</function>, <function>oci_excute</function>,
+ and one of the oci_fetch_*() functions.
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-error.xml?r1=1.8&r2=1.9&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-error.xml
diff -u phpdoc/en/reference/oracle/functions/ora-error.xml:1.8
phpdoc/en/reference/oracle/functions/ora-error.xml:1.9
--- phpdoc/en/reference/oracle/functions/ora-error.xml:1.8 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-error.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<refentry id="function.ora-error">
<refnamediv>
<refname>ora_error</refname>
@@ -58,6 +58,12 @@
</thead>
<tbody>
<row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ <row>
<entry>3.0.4</entry>
<entry>
Support for connection identifiers was added.
@@ -95,6 +101,16 @@
</para>
</refsect1>
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_error</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-errorcode.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-errorcode.xml
diff -u phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.7
phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-errorcode.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-errorcode">
<refnamediv>
<refname>ora_errorcode</refname>
@@ -54,6 +54,12 @@
</thead>
<tbody>
<row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ <row>
<entry>3.0.4</entry>
<entry>
Support for connection identifiers was added.
@@ -65,6 +71,16 @@
</para>
</refsect1>
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_error</function> (the "code" field of the resulting
array)</member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-exec.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-exec.xml
diff -u phpdoc/en/reference/oracle/functions/ora-exec.xml:1.7
phpdoc/en/reference/oracle/functions/ora-exec.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-exec.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-exec.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-exec">
<refnamediv>
<refname>ora_exec</refname>
@@ -42,6 +42,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_execute</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-fetch-into.xml?r1=1.10&r2=1.11&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-fetch-into.xml
diff -u phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.10
phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.11
--- phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.10 Tue Feb
6 01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-fetch-into.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<refentry id="function.ora-fetch-into">
<refnamediv>
<refname>ora_fetch_into</refname>
@@ -63,6 +63,30 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="examples">
&reftitle.examples;
<para>
@@ -85,6 +109,16 @@
</para>
</refsect1>
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member>A fetch function like
<function>oci_fetch_array</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-fetch.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-fetch.xml
diff -u phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.7
phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-fetch.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-fetch">
<refnamediv>
<refname>ora_fetch</refname>
@@ -44,6 +44,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_fetch</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-getcolumn.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-getcolumn.xml
diff -u phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.7
phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-getcolumn.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-getcolumn">
<refnamediv>
<refname>ora_getcolumn</refname>
@@ -53,6 +53,41 @@
string "0").
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_result</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-logoff.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-logoff.xml
diff -u phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.7
phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-logoff.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-logoff">
<refnamediv>
<refname>ora_logoff</refname>
@@ -42,6 +42,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_close</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-logon.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-logon.xml
diff -u phpdoc/en/reference/oracle/functions/ora-logon.xml:1.7
phpdoc/en/reference/oracle/functions/ora-logon.xml:1.8
--- phpdoc/en/reference/oracle/functions/ora-logon.xml:1.7 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-logon.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<refentry id="function.ora-logon">
<refnamediv>
<refname>ora_logon</refname>
@@ -71,6 +71,42 @@
functions.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_connect</function></member>
+ <member><function>oci_new_connect</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-numcols.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-numcols.xml
diff -u phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.6
phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-numcols.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-numcols">
<refnamediv>
<refname>ora_numcols</refname>
@@ -41,6 +41,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_num_fields</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-numrows.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-numrows.xml
diff -u phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.6
phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-numrows.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-numrows">
<refnamediv>
<refname>ora_numrows</refname>
@@ -39,6 +39,41 @@
Returns the number of rows as an integer, or &false; on error.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_num_rows</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-open.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-open.xml
diff -u phpdoc/en/reference/oracle/functions/ora-open.xml:1.6
phpdoc/en/reference/oracle/functions/ora-open.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-open.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-open.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-open">
<refnamediv>
<refname>ora_open</refname>
@@ -41,6 +41,41 @@
and <function>ora_errorcode</function> functions.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_new_cursor</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-parse.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-parse.xml
diff -u phpdoc/en/reference/oracle/functions/ora-parse.xml:1.9
phpdoc/en/reference/oracle/functions/ora-parse.xml:1.10
--- phpdoc/en/reference/oracle/functions/ora-parse.xml:1.9 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-parse.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<refentry id="function.ora-parse">
<refnamediv>
<refname>ora_parse</refname>
@@ -58,6 +58,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_parse</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-plogon.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-plogon.xml
diff -u phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.6
phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-plogon.xml Wed Feb 7 06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-plogon">
<refnamediv>
<refname>ora_plogon</refname>
@@ -49,6 +49,40 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_pconnect</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oracle/functions/ora-rollback.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/oracle/functions/ora-rollback.xml
diff -u phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.6
phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.7
--- phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.6 Tue Feb 6
01:46:48 2007
+++ phpdoc/en/reference/oracle/functions/ora-rollback.xml Wed Feb 7
06:51:55 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.ora-rollback">
<refnamediv>
<refname>ora_rollback</refname>
@@ -44,6 +44,41 @@
functions.
</para>
</refsect1>
+
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.1.0</entry>
+ <entry>
+ &oracle.deprecated;
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
+ <refsect1 role="notes">
+ &reftitle.notes;
+ <para>
+ &oracle.replacement.desc;
+ <simplelist>
+ <member><function>oci_rollback</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</refentry>
<!-- Keep this comment at the end of the file