didou           Sun Oct 31 14:38:54 2004 EDT

  Modified files:              
    /phpdoc/en/reference/mysqli/functions       mysqli-stmt-fetch.xml 
  Log:
  fix 30632 : mysqli_stmt_fetch returns a boolean
  
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml:1.3 
phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml:1.4
--- phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml:1.3      Sun Oct 31 
11:05:13 2004
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-fetch.xml  Sun Oct 31 14:38:54 
2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
   <refentry id="function.mysqli-stmt-fetch">
    <refnamediv>
     <refname>mysqli_stmt_fetch</refname>
@@ -12,24 +12,27 @@
     <title>Description</title>
     <para>Procedural style:</para>
     <methodsynopsis>
-     <type>mixed</type><methodname>mysqli_stmt_fetch</methodname>
+     <type>bool</type><methodname>mysqli_stmt_fetch</methodname>
      <methodparam><type>object</type><parameter>stmt</parameter></methodparam>
     </methodsynopsis>
     <para>Object oriented style (method):</para>
     <classsynopsis>
      <ooclass><classname>stmt</classname></ooclass>
      <methodsynopsis>
-      <type>mixed</type>
+      <type>bool</type>
       <methodname>fetch</methodname>
       <void />
      </methodsynopsis>
     </classsynopsis>    
     <para>
-     <function>mysqli_stmt_fetch</function> returns row data using the variables 
bound by <function>mysqli_stmt_bind_result</function>.
+     <function>mysqli_stmt_fetch</function> fetch the result from a prepared
+     statement into the variables bound by 
+     <function>mysqli_stmt_bind_result</function>. &return.success;
     </para>
     <note>
      <para>
-      Note that all columns must be bound by the application before calling 
<function>mysqli_stmt_fetch</function>. 
+      Note that all columns must be bound by the application before calling 
+      <function>mysqli_stmt_fetch</function>. 
      </para>
     </note>
    </refsect1>

Reply via email to