mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
fixed a typo and added some (missing?) '<para>'s
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31343 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
e7fb5a6a9f
commit
8d6aed92ff
1 changed files with 26 additions and 10 deletions
|
@ -174,11 +174,14 @@ echo "Result: $result<BR>Out: $output<BR>In: $input";
|
|||
<paramdef>int <parameter>conn</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>Returns true on success, false on error. Details about the
|
||||
<para>
|
||||
Returns true on success, false on error. Details about the
|
||||
error can be retrieved using the <function>ora_error</function>
|
||||
and <function>ora_errorcode</function> functions. This function
|
||||
commits an Oracle transaction. A transaction is defined as all
|
||||
the changes on a given connection since the last commit/rollback,
|
||||
and <function>ora_errorcode</function> functions.
|
||||
</para>
|
||||
<para>
|
||||
This function commits an Oracle transaction. A transaction is defined as
|
||||
all the changes on a given connection since the last commit/rollback,
|
||||
autocommit was turned off or when the connection was established.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -257,6 +260,8 @@ echo "Result: $result<BR>Out: $output<BR>In: $input";
|
|||
Returns true on success, false on error. 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>,
|
||||
and <function>ora_fetch</function>.
|
||||
</para>
|
||||
|
@ -282,6 +287,8 @@ echo "Result: $result<BR>Out: $output<BR>In: $input";
|
|||
where <replaceable>XXX</replaceable> is where the error comes
|
||||
from and <replaceable>NNNNN</replaceable> identifies the error
|
||||
message.
|
||||
</para>
|
||||
<para>
|
||||
<note>
|
||||
<para>Support for connection ids was added in 3.0.4.</para>
|
||||
</note>
|
||||
|
@ -367,6 +374,8 @@ remove the unique restriction or do not insert the key </computeroutput>
|
|||
using the <function>ora_error</function> and
|
||||
<function>ora_errorcode</function> functions. If there was no
|
||||
error, <function>ora_errorcode</function> will return 0.
|
||||
</para>
|
||||
<para>
|
||||
Retrieves a row of data from the specified cursor.
|
||||
</para>
|
||||
<simpara>
|
||||
|
@ -437,8 +446,10 @@ echo $results[1];
|
|||
will return a non-zero value. Note, however, that a test for False
|
||||
on the results from this function may be true in cases where there is
|
||||
not error as well (NULL result, empty string, the number 0, the
|
||||
string "0"). Fetches the data for a column or function
|
||||
result.
|
||||
string "0").
|
||||
</para>
|
||||
<para>
|
||||
Fetches the data for a column or function result.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
@ -457,10 +468,12 @@ echo $results[1];
|
|||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Returns true on success, False on error. Details about the error
|
||||
Returns true on success, false on error. Details about the error
|
||||
can be retrieved using the <function>ora_error</function> and
|
||||
<function>ora_errorcode</function> functions. Logs out the user
|
||||
and disconnects from the server.
|
||||
<function>ora_errorcode</function> functions.
|
||||
</para>
|
||||
<para>
|
||||
Logs out the user and disconnects from the server.
|
||||
</para>
|
||||
<simpara>
|
||||
See also <function>ora_logon</function>.
|
||||
|
@ -621,7 +634,10 @@ $conn = Ora_Logon("user<emphasis>@TNSNAME</emphasis>", "pass");
|
|||
</funcsynopsis>
|
||||
<para>
|
||||
This function parses an SQL statement or a PL/SQL block and
|
||||
associates it with the given cursor. Returns 0 on success or -1 on
|
||||
associates it with the given cursor.
|
||||
</para>
|
||||
<para>
|
||||
Returns 0 on success or -1 on
|
||||
error.
|
||||
</para>
|
||||
<simpara>
|
||||
|
|
Loading…
Reference in a new issue