didou Tue Jul 29 15:14:56 2003 EDT
Modified files:
/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-numcols.xml
ora-numrows.xml ora-open.xml
ora-parse.xml ora-plogon.xml
ora-rollback.xml
Log:
strtolower(refname), protos update, some see also and entities
Index: phpdoc/en/reference/oracle/functions/ora-bind.xml
diff -u phpdoc/en/reference/oracle/functions/ora-bind.xml:1.3
phpdoc/en/reference/oracle/functions/ora-bind.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-bind.xml:1.3 Sat May 17 09:32:13
2003
+++ phpdoc/en/reference/oracle/functions/ora-bind.xml Tue Jul 29 15:14:56 2003
@@ -1,34 +1,33 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-bind">
<refnamediv>
- <refname>Ora_Bind</refname>
+ <refname>ora_bind</refname>
<refpurpose>Binds a PHP variable to an Oracle parameter</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_bind</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <type>bool</type><methodname>ora_bind</methodname>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
<methodparam><type>string</type><parameter>PHP_variable_name</parameter></methodparam>
<methodparam><type>string</type><parameter>SQL_parameter_name</parameter></methodparam>
<methodparam><type>int</type><parameter>length</parameter></methodparam>
<methodparam
choice="opt"><type>int</type><parameter>type</parameter></methodparam>
</methodsynopsis>
<para>
- Returns &true; if the bind succeeds, otherwise &false;. Details
- about the error can be retrieved using the
- <function>ora_error</function> and
- <function>ora_errorcode</function> functions.
- </para>
- <para>
This function binds the named PHP variable with a SQL parameter.
The SQL parameter must be in the form ":name". With the optional
type parameter, you can define whether the SQL parameter is an
in/out (0, default), in (1) or out (2) parameter. As of PHP
3.0.1, you can use the constants ORA_BIND_INOUT, ORA_BIND_IN and
ORA_BIND_OUT instead of the numbers.
+ </para>
+ <para>
+ &return.success; Details about the error can be retrieved using the
+ <function>ora_error</function> and <function>ora_errorcode</function>
+ functions.
</para>
<para>
<function>ora_bind</function> must be called after <function>ora_parse</function>
Index: phpdoc/en/reference/oracle/functions/ora-close.xml
diff -u phpdoc/en/reference/oracle/functions/ora-close.xml:1.2
phpdoc/en/reference/oracle/functions/ora-close.xml:1.3
--- phpdoc/en/reference/oracle/functions/ora-close.xml:1.2 Wed Apr 17 02:42:28
2002
+++ phpdoc/en/reference/oracle/functions/ora-close.xml Tue Jul 29 15:14:56 2003
@@ -1,26 +1,25 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.5 -->
<refentry id="function.ora-close">
<refnamediv>
- <refname>Ora_Close</refname>
- <refpurpose>close an Oracle cursor</refpurpose>
+ <refname>ora_close</refname>
+ <refpurpose>Closes an Oracle cursor</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_close</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <type>bool</type><methodname>ora_close</methodname>
+ <methodparam><type>ressource</type><parameter>cursor</parameter></methodparam>
</methodsynopsis>
<para>
- Returns &true; if the close succeeds, otherwise &false;. Details
- about the error can be retrieved using the
- <function>ora_error</function> and
- <function>ora_errorcode</function> functions.
- </para>
- <para>
This function closes a data cursor opened with
<function>ora_open</function>.
+ </para>
+ <para>
+ &return.success; Details about the error can be retrieved using the
+ <function>ora_error</function> and <function>ora_errorcode</function>
+ functions.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/oracle/functions/ora-columnname.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.3
phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-columnname.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-columnname.xml Tue Jul 29 15:14:56
2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-columnname">
<refnamediv>
<refname>ora_columnname</refname>
- <refpurpose>Get name of Oracle result column</refpurpose>
+ <refpurpose>Gets the name of an Oracle result column</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>string</type><methodname>ora_columnname</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
<methodparam><type>int</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
Index: phpdoc/en/reference/oracle/functions/ora-columnsize.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.3
phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-columnsize.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-columnsize.xml Tue Jul 29 15:14:56
2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.10 -->
<refentry id="function.ora-columnsize">
<refnamediv>
<refname>ora_columnsize</refname>
- <refpurpose>get size of Oracle result column</refpurpose>
+ <refpurpose>Returns the size of an Oracle result column</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ora_columnsize</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
<methodparam><type>int</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
Index: phpdoc/en/reference/oracle/functions/ora-columntype.xml
diff -u phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.3
phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-columntype.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-columntype.xml Tue Jul 29 15:14:56
2003
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-columntype">
<refnamediv>
<refname>ora_columntype</refname>
- <refpurpose>Get type of Oracle result column</refpurpose>
+ <refpurpose>Gets the type of an Oracle result column</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
Index: phpdoc/en/reference/oracle/functions/ora-commit.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commit.xml:1.4
phpdoc/en/reference/oracle/functions/ora-commit.xml:1.5
--- phpdoc/en/reference/oracle/functions/ora-commit.xml:1.4 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-commit.xml Tue Jul 29 15:14:56 2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-commit">
<refnamediv>
<refname>ora_commit</refname>
- <refpurpose>commit an Oracle transaction</refpurpose>
+ <refpurpose>Commit an Oracle transaction</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_commit</methodname>
- <methodparam><type>int</type><parameter>conn</parameter></methodparam>
+ <type>bool</type><methodname>ora_commit</methodname>
+ <methodparam><type>resource</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
This function commits an Oracle transaction. A transaction is defined as
@@ -21,6 +21,11 @@
&return.success; Details about the
error can be retrieved using the <function>ora_error</function>
and <function>ora_errorcode</function> functions.
+ </para>
+ <para>
+ See also
+ <function>ora_commiton</function> and
+ <function>ora_commitoff</function>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/oracle/functions/ora-commitoff.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.4
phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.5
--- phpdoc/en/reference/oracle/functions/ora-commitoff.xml:1.4 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-commitoff.xml Tue Jul 29 15:14:56
2003
@@ -1,25 +1,30 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-commitoff">
<refnamediv>
<refname>ora_commitoff</refname>
- <refpurpose>disable automatic commit</refpurpose>
+ <refpurpose>Disable automatic commit</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_commitoff</methodname>
- <methodparam><type>int</type><parameter>conn</parameter></methodparam>
+ <type>bool</type><methodname>ora_commitoff</methodname>
+ <methodparam><type>resource</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
This function turns off automatic commit after each
- <function>ora_exec</function>.
+ <function>ora_exec</function> on the given connection.
</para>
<para>
&return.success; Details about the error
can be retrieved using the <function>ora_error</function> and
<function>ora_errorcode</function> functions.
+ </para>
+ <para>
+ See also
+ <function>ora_commiton</function> and
+ <function>ora_commit</function>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/oracle/functions/ora-commiton.xml
diff -u phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.3
phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-commiton.xml:1.3 Wed Oct 23 04:26:52
2002
+++ phpdoc/en/reference/oracle/functions/ora-commiton.xml Tue Jul 29 15:14:56
2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.5 -->
<refentry id="function.ora-commiton">
<refnamediv>
- <refname>Ora_CommitOn</refname>
- <refpurpose>enable automatic commit</refpurpose>
+ <refname>ora_commiton</refname>
+ <refpurpose>Enable automatic commit</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_commiton</methodname>
- <methodparam><type>int</type><parameter>conn</parameter></methodparam>
+ <type>bool</type><methodname>ora_commiton</methodname>
+ <methodparam><type>resource</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
This function turns on automatic commit after each
@@ -20,6 +20,11 @@
&return.success; Details about the error
can be retrieved using the <function>ora_error</function> and
<function>ora_errorcode</function> functions.
+ </para>
+ <para>
+ See also
+ <function>ora_commitoff</function> and
+ <function>ora_commit</function>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/oracle/functions/ora-do.xml
diff -u phpdoc/en/reference/oracle/functions/ora-do.xml:1.3
phpdoc/en/reference/oracle/functions/ora-do.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-do.xml:1.3 Wed Oct 23 04:26:52 2002
+++ phpdoc/en/reference/oracle/functions/ora-do.xml Tue Jul 29 15:14:56 2003
@@ -1,27 +1,27 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-do">
<refnamediv>
- <refname>Ora_Do</refname>
+ <refname>ora_do</refname>
<refpurpose>Parse, Exec, Fetch</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_do</methodname>
- <methodparam><type>int</type><parameter>conn</parameter></methodparam>
+ <type>resource</type><methodname>ora_do</methodname>
+ <methodparam><type>resource</type><parameter>conn</parameter></methodparam>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
</methodsynopsis>
<para>
- This function is quick combination of <function>ora_parse</function>,
+ <function>ora_do</function> is quick combination of
<function>ora_parse</function>,
<function>ora_exec</function> and <function>ora_fetch</function>.
It will parse and execute a statement, then fetch the first result row.
</para>
<para>
- &return.success; Details about the error
- can be retrieved using the <function>ora_error</function> and
- <function>ora_errorcode</function> functions.
+ This function returns a cursor index or &false; on failure. Details
+ about the error can be retrieved using the <function>ora_error</function>
+ and <function>ora_errorcode</function> functions.
</para>
<para>
See also <function>ora_parse</function>,<function>ora_exec</function>,
Index: phpdoc/en/reference/oracle/functions/ora-error.xml
diff -u phpdoc/en/reference/oracle/functions/ora-error.xml:1.3
phpdoc/en/reference/oracle/functions/ora-error.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-error.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-error.xml Tue Jul 29 15:14:56 2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-error">
<refnamediv>
<refname>ora_error</refname>
- <refpurpose>get Oracle error message</refpurpose>
+ <refpurpose>Gets an Oracle error message</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>string</type><methodname>ora_error</methodname>
-
<methodparam><type>int</type><parameter>cursor_or_connection</parameter></methodparam>
+
<methodparam><type>resource</type><parameter>cursor_or_connection</parameter></methodparam>
</methodsynopsis>
<para>
Returns an error message of the form
Index: phpdoc/en/reference/oracle/functions/ora-errorcode.xml
diff -u phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.3
phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-errorcode.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-errorcode.xml Tue Jul 29 15:14:56
2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-errorcode">
<refnamediv>
<refname>ora_errorcode</refname>
- <refpurpose>get Oracle error code</refpurpose>
+ <refpurpose>Gets an Oracle error code</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ora_errorcode</methodname>
-
<methodparam><type>int</type><parameter>cursor_or_connection</parameter></methodparam>
+
<methodparam><type>resource</type><parameter>cursor_or_connection</parameter></methodparam>
</methodsynopsis>
<para>
Returns the numeric error code of the last executed statement on
Index: phpdoc/en/reference/oracle/functions/ora-exec.xml
diff -u phpdoc/en/reference/oracle/functions/ora-exec.xml:1.4
phpdoc/en/reference/oracle/functions/ora-exec.xml:1.5
--- phpdoc/en/reference/oracle/functions/ora-exec.xml:1.4 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-exec.xml Tue Jul 29 15:14:56 2003
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-exec">
<refnamediv>
<refname>ora_exec</refname>
- <refpurpose>Execute parsed statement on an Oracle cursor</refpurpose>
+ <refpurpose>Execute a parsed statement on an Oracle cursor</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
Index: phpdoc/en/reference/oracle/functions/ora-fetch-into.xml
diff -u phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.5
phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.6
--- phpdoc/en/reference/oracle/functions/ora-fetch-into.xml:1.5 Thu Oct 31 03:42:52
2002
+++ phpdoc/en/reference/oracle/functions/ora-fetch-into.xml Tue Jul 29 15:14:56
2003
@@ -1,20 +1,18 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-fetch-into">
<refnamediv>
- <refname>Ora_Fetch_Into</refname>
+ <refname>ora_fetch_into</refname>
<refpurpose>Fetch a row into the specified result array</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ora_fetch_into</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
<methodparam><type>array</type><parameter>result</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>
- flags
- </parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Fetches a row of data into an array. The <parameter>flags</parameter>
Index: phpdoc/en/reference/oracle/functions/ora-fetch.xml
diff -u phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.3
phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-fetch.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-fetch.xml Tue Jul 29 15:14:56 2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.5 -->
<refentry id="function.ora-fetch">
<refnamediv>
- <refname>Ora_Fetch</refname>
- <refpurpose>fetch a row of data from a cursor</refpurpose>
+ <refname>ora_fetch</refname>
+ <refpurpose>Fetch a row of data from a cursor</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_fetch</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
+ <type>bool</type><methodname>ora_fetch</methodname>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
</methodsynopsis>
<para>
Retrieves a row of data from the specified <parameter>cursor</parameter>.
Index: phpdoc/en/reference/oracle/functions/ora-getcolumn.xml
diff -u phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.3
phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-getcolumn.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-getcolumn.xml Tue Jul 29 15:14:56
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-getcolumn">
<refnamediv>
@@ -10,8 +10,8 @@
<title>Description</title>
<methodsynopsis>
<type>mixed</type><methodname>ora_getcolumn</methodname>
- <methodparam><type>int</type><parameter>cursor</parameter></methodparam>
- <methodparam><type>mixed</type><parameter>column</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
+ <methodparam><type>int</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
Fetches the data for a column or function result.
Index: phpdoc/en/reference/oracle/functions/ora-logoff.xml
diff -u phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.4
phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.5
--- phpdoc/en/reference/oracle/functions/ora-logoff.xml:1.4 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-logoff.xml Tue Jul 29 15:14:56 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-logoff">
<refnamediv>
@@ -9,8 +9,8 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_logoff</methodname>
- <methodparam><type>int</type><parameter>connection</parameter></methodparam>
+ <type>bool</type><methodname>ora_logoff</methodname>
+
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
Logs out the user and disconnects from the server.
Index: phpdoc/en/reference/oracle/functions/ora-numcols.xml
diff -u phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.3
phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-numcols.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-numcols.xml Tue Jul 29 15:14:56
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.5 -->
<refentry id="function.ora-numcols">
<refnamediv>
@@ -10,7 +10,7 @@
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ora_numcols</methodname>
- <methodparam><type>int</type><parameter>cursor_ind</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
</methodsynopsis>
<para>
<function>ora_numcols</function> returns the number of columns in a result.
Index: phpdoc/en/reference/oracle/functions/ora-numrows.xml
diff -u phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.3
phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-numrows.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-numrows.xml Tue Jul 29 15:14:56
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.5 -->
<refentry id="function.ora-numrows">
<refnamediv>
@@ -10,7 +10,7 @@
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>ora_numrows</methodname>
- <methodparam><type>int</type><parameter>cursor_ind</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
</methodsynopsis>
<para>
<function>ora_numrows</function> returns the number of rows in a result.
Index: phpdoc/en/reference/oracle/functions/ora-open.xml
diff -u phpdoc/en/reference/oracle/functions/ora-open.xml:1.3
phpdoc/en/reference/oracle/functions/ora-open.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-open.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-open.xml Tue Jul 29 15:14:56 2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-open">
<refnamediv>
<refname>ora_open</refname>
- <refpurpose>open an Oracle cursor</refpurpose>
+ <refpurpose>Opens an Oracle cursor</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_open</methodname>
- <methodparam><type>int</type><parameter>connection</parameter></methodparam>
+ <type>resource</type><methodname>ora_open</methodname>
+
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
Opens an Oracle cursor associated with connection.
Index: phpdoc/en/reference/oracle/functions/ora-parse.xml
diff -u phpdoc/en/reference/oracle/functions/ora-parse.xml:1.5
phpdoc/en/reference/oracle/functions/ora-parse.xml:1.6
--- phpdoc/en/reference/oracle/functions/ora-parse.xml:1.5 Thu Feb 13 10:10:48
2003
+++ phpdoc/en/reference/oracle/functions/ora-parse.xml Tue Jul 29 15:14:56 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-parse">
<refnamediv>
@@ -9,8 +9,8 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_parse</methodname>
- <methodparam><type>int</type><parameter>cursor_ind</parameter></methodparam>
+ <type>bool</type><methodname>ora_parse</methodname>
+ <methodparam><type>resource</type><parameter>cursor</parameter></methodparam>
<methodparam><type>string</type><parameter>sql_statement</parameter></methodparam>
<methodparam><type>int</type><parameter>defer</parameter></methodparam>
</methodsynopsis>
Index: phpdoc/en/reference/oracle/functions/ora-plogon.xml
diff -u phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.3
phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-plogon.xml:1.3 Wed Feb 12 12:57:03
2003
+++ phpdoc/en/reference/oracle/functions/ora-plogon.xml Tue Jul 29 15:14:56 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-plogon">
<refnamediv>
@@ -11,7 +11,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_plogon</methodname>
+ <type>resource</type><methodname>ora_plogon</methodname>
<methodparam><type>string</type><parameter>user</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
</methodsynopsis>
Index: phpdoc/en/reference/oracle/functions/ora-rollback.xml
diff -u phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.3
phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.4
--- phpdoc/en/reference/oracle/functions/ora-rollback.xml:1.3 Wed Oct 23 04:26:52
2002
+++ phpdoc/en/reference/oracle/functions/ora-rollback.xml Tue Jul 29 15:14:56
2003
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oracle.xml, last change in rev 1.2 -->
<refentry id="function.ora-rollback">
<refnamediv>
- <refname>Ora_Rollback</refname>
- <refpurpose>roll back transaction</refpurpose>
+ <refname>ora_rollback</refname>
+ <refpurpose>Rolls back a transaction</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ora_rollback</methodname>
- <methodparam><type>int</type><parameter>connection</parameter></methodparam>
+ <type>bool</type><methodname>ora_rollback</methodname>
+
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
This function undoes an Oracle transaction. (See
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php