georg           Thu Aug 30 16:36:22 2001 EDT

  Modified files:              
    /phpdoc/en/functions        mysql.xml 
  Log:
  
  Bug: 12823 - Changed mysql_unbuffered_query description
  killed 3rd parameter, mysql_unbuffered_query only accepts 2 parms
  inserted description for 2nd parameter
  
  
Index: phpdoc/en/functions/mysql.xml
diff -u phpdoc/en/functions/mysql.xml:1.62 phpdoc/en/functions/mysql.xml:1.63
--- phpdoc/en/functions/mysql.xml:1.62  Thu Aug 30 12:51:12 2001
+++ phpdoc/en/functions/mysql.xml       Thu Aug 30 16:36:21 2001
@@ -1,5 +1,5 @@
 <?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.62 $ -->
+<!-- $Revision: 1.63 $ -->
  <reference id="ref.mysql">
   <title>MySQL functions</title>
   <titleabbrev>MySQL</titleabbrev>
@@ -1834,7 +1834,7 @@
      See also: <function>mysql_affected_rows</function>,
      <function>mysql_db_query</function>,
      <function>mysql_unbuffered_query</function>,
-     <function>mysql_free_result</function>,
+     <function>mysql_free_result/function>,
      <function>mysql_result</function>,
      <function>mysql_select_db</function>, and
      <function>mysql_connect</function>.
@@ -1856,13 +1856,10 @@
       <paramdef>resource 
        <parameter><optional>link_identifier</optional></parameter>
       </paramdef>
-      <paramdef>int 
-       <parameter><optional>result_mode</optional></parameter>
-      </paramdef>
-     </funcprototype>
+      </funcprototype>
     </funcsynopsis>
     <para> 
-     <function>mysql_unbuffered_query</function> sends a SQL query to MySQL, 
+     <function>mysql_unbuffered_query</function> sends a SQL query 
+<parameter>query</parameter> to MySQL, 
      without fetching and buffering the result rows automatically, as 
      <function>mysql_query</function> does.
      On the one hand, this saves a considerable amount of memory with SQL 
@@ -1870,6 +1867,7 @@
      working on the result set immediately after the first row has been 
      retrieved: you don't have to wait until the complete SQL query has been 
      performed.
+     When using multiple DB-connects, you have to specify the optional parameter 
+<parameter>link_identifier</parameter>. 
     </para>
     <note>
      <para>


Reply via email to