mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
ccdf2d27d9
commit
f76374f37e
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue