Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions reference/mysqli/mysqli/multi-query.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@
</para>
&mysqli.sqlinjection.warning;
<para>
Queries are sent asynchronously in a single call to the database, but the
database processes them sequentially.
Queries are sent in a single call to the database and processed sequentially.
<methodname>mysqli_multi_query</methodname> waits for the first query to
complete before returning control to PHP. The MySQL server will then process
the next query in the sequence. Once the next result is ready, MySQL will wait
for the next execution of <function>mysqli_next_result</function> from PHP.
complete before returning control to PHP. In the meantime, the MySQL server
will continue processing the remaining queries asynchronously of PHP and make
the results available for fetching.
</para>
<para>
It is recommended to use
Expand Down