Clarified that certain commands can be used on a result set from mysql_unbuffered_query after all rows have been fetched. Closes bug #54704.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@320465 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Justin Martin 2011-12-05 21:55:40 +00:00
parent ccdf2d27d9
commit f76374f37e

View file

@ -72,9 +72,9 @@
The benefits of <function>mysql_unbuffered_query</function> come
at a cost: you cannot use <function>mysql_num_rows</function> and
<function>mysql_data_seek</function> on a result set returned from
<function>mysql_unbuffered_query</function>. You also have to
fetch all result rows from an unbuffered SQL query before you
can send a new SQL query to MySQL, using the same
<function>mysql_unbuffered_query</function>, until all rows are fetched.
You also have to fetch all result rows from an unbuffered SQL query
before you can send a new SQL query to MySQL, using the same
<parameter>link_identifier</parameter>.
</para>
</note>