vrana Tue Apr 5 10:01:05 2005 EDT
Modified files:
/phpdoc/en/reference/mysqli/functions mysqli-stmt-execute.xml
mysqli-stmt-result-metadata.xml
mysqli-stmt-store-result.xml
Log:
Replace obsolete mysqli_fetch() with mysqli_stmt_fetch()
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml:1.6
phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml:1.7
--- phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml:1.6 Mon Feb
28 04:08:33 2005
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-execute.xml Tue Apr
5 10:01:04 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.mysqli-stmt-execute">
<refnamediv>
<refname>mysqli_stmt_execute</refname>
@@ -30,11 +30,11 @@
<para>
If the statement is UPDATE, DELETE, or INSERT, the total number of
affected rows can be
determined by using the <function>mysqli_stmt_affected_rows</function>
function. Likewise,
- if the query yields a result set the <function>mysqli_fetch</function>
function is used.
+ if the query yields a result set the
<function>mysqli_stmt_fetch</function> function is used.
</para>
<note>
<para>
- When using <function>mysqli_stmt_execute</function>, the
<function>mysqli_fetch</function>
+ When using <function>mysqli_stmt_execute</function>, the
<function>mysqli_stmt_fetch</function>
function must be used to fetch the data prior to performing any
additional queries.
</para>
</note>
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml
diff -u
phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml:1.6
phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml:1.7
--- phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml:1.6
Fri Nov 12 09:01:04 2004
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-result-metadata.xml
Tue Apr 5 10:01:04 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<refentry id="function.mysqli-stmt-result-metadata">
<refnamediv>
<refname>mysqli_stmt_result_metadata</refname>
@@ -49,7 +49,7 @@
<para>
The result set returned by
<function>mysqli_stmt_result_metadata</function> contains only
metadata. It does not contain any row results. The rows are obtained by
using the
- statement handle with <function>mysqli_fetch</function>.
+ statement handle with <function>mysqli_stmt_fetch</function>.
</para>
</note>
</refsect1>
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml:1.9
phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml:1.10
--- phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml:1.9
Fri Nov 12 09:01:04 2004
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-store-result.xml Tue Apr
5 10:01:04 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<refentry id="function.mysqli-stmt-store-result">
<refnamediv>
<refname>mysqli_stmt_store_result</refname>
@@ -25,7 +25,7 @@
You must call <function>mysqli_stmt_store_result</function> for every
query that
successfully produces a result set (<literal>SELECT, SHOW, DESCRIBE,
EXPLAIN</literal>),
and only if you want to buffer the complete result set by the client,
- so that the subsequent <function>mysqli_fetch</function> call returns
buffered data.
+ so that the subsequent <function>mysqli_stmt_fetch</function> call
returns buffered data.
</para>
<note>
<para>
@@ -45,7 +45,7 @@
<para>
<function>mysqli_prepare</function>,
<function>mysqli_stmt_result_metadata</function>&listendand;
- <function>mysqli_fetch</function>.
+ <function>mysqli_stmt_fetch</function>.
</para>
</refsect1>
<refsect1>