make use of the new entities

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@195295 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Antony Dovgal 2005-09-06 20:41:30 +00:00
parent b60eb40424
commit dd1d80818c
10 changed files with 20 additions and 19 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<refentry id="function.oci-connect">
<refnamediv>
<refname>oci_connect</refname>
@ -43,9 +43,7 @@
<simpara>
If you're using PHP with Oracle Instant Client, you can use easy connect
naming method described here:
<ulink
url="http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306">
http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306</ulink>.
<ulink url="&url.oracle.oic.connect;">&url.oracle.oic.connect;</ulink>.
Basically this means you can specify "//db_host[:port]/database_name"
as database name. But if you want to use the old way of naming you
<emphasis>must</emphasis> set either <constant>ORACLE_HOME</constant> or

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<refentry id="function.oci-fetch-all">
<refnamediv>
<refname>oci_fetch_all</refname>
@ -88,6 +88,7 @@ oci_close($conn);
</programlisting>
</example>
</para>
&oci.datatypes;
<para>
<function>oci_fetch_all</function> returns &false; in case of error.
</para>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<refentry id="function.oci-fetch-array">
<refnamediv>
<refname>oci_fetch_array</refname>
@ -155,6 +155,7 @@ while ($row = oci_fetch_array ($statement, OCI_NUM)) {
</programlisting>
</example>
</para>
&oci.datatypes;
<para>
See also <function>oci_fetch_assoc</function>,
<function>oci_fetch_object</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.oci-fetch-assoc">
<refnamediv>
<refname>oci_fetch_assoc</refname>
@ -27,6 +27,7 @@
Oracle returns all field names in uppercase and associative indices in the result array will be uppercased too.
</simpara>
</note>
&oci.datatypes;
<para>
See also <function>oci_fetch_array</function>,
<function>oci_fetch_object</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<refentry id="function.oci-fetch-object">
<refnamediv>
<refname>oci_fetch_object</refname>
@ -25,6 +25,7 @@
Oracle returns all field names in uppercase and attributes' names in the result object will be in uppercase as well.
</simpara>
</note>
&oci.datatypes;
<para>
See also <function>oci_fetch_array</function>,
<function>oci_fetch_assoc</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<refentry id="function.oci-fetch-row">
<refnamediv>
<refname>oci_fetch_row</refname>
@ -22,6 +22,7 @@
Subsequent calls to <function>oci_fetch_row</function> will return the
next row from the result data or &false; if there are no more rows.
</para>
&oci.datatypes;
<para>
See also <function>oci_fetch_array</function>,
<function>oci_fetch_object</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<refentry id="function.oci-fetch">
<refnamediv>
<refname>oci_fetch</refname>
@ -18,6 +18,7 @@
<para>
&return.success;
</para>
&oci.datatypes;
<note>
<para>
In PHP versions before 5.0.0 you must use <function>ocifetch</function> instead.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<refentry id="function.oci-new-connect">
<refnamediv>
<refname>oci_new_connect</refname>
@ -47,9 +47,7 @@
<simpara>
If you're using PHP with Oracle Instant Client, you can use easy connect
naming method described here:
<ulink
url="http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306">
http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306</ulink>.
<ulink url="&url.oracle.oic.connect;">&url.oracle.oic.connect;</ulink>.
Basically this means you can specify "//db_host[:port]/database_name"
as database name. But if you want to use the old way of naming you
<emphasis>must</emphasis> set either <constant>ORACLE_HOME</constant> or

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<refentry id="function.oci-pconnect">
<refnamediv>
<refname>oci_pconnect</refname>
@ -59,9 +59,7 @@
<simpara>
If you're using PHP with Oracle Instant Client, you can use easy connect
naming method described here:
<ulink
url="http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306">
http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306</ulink>.
<ulink url="&url.oracle.oic.connect;">&url.oracle.oic.connect;</ulink>.
Basically this means you can specify "//db_host[:port]/database_name"
as database name. But if you want to use the old way of naming you
<emphasis>must</emphasis> set either <constant>ORACLE_HOME</constant> or

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<refentry id="function.oci-result">
<refnamediv>
<refname>oci_result</refname>
@ -31,6 +31,7 @@
This, however, is deprecated and not recommended.
</para>
</note>
&oci.datatypes;
<para>
See also <function>oci_fetch_array</function>,
<function>oci_fetch_assoc</function>,