Bug: 12823 - Changed mysql_unbuffered_query description

killed 3rd parameter, mysql_unbuffered_query only accepts 2 parms
inserted description for 2nd parameter


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@56327 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Georg Richter 2001-08-30 20:36:21 +00:00
parent ea5e818164
commit 83a3aa848e

View file

@ -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 @@ $result = mysql_query ("SELECT my_col FROM my_tbl")
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 @@ $result = mysql_query ("SELECT my_col FROM my_tbl")
<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 @@ $result = mysql_query ("SELECT my_col FROM my_tbl")
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>