You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the server doesn't support COM_MULTI (i.e., everything except MariaDB), concatenate as many commands as possible into one COM_QUERY packet. (This is only possible with the text protocol.)
This will provide the most efficient network I/O possible, and should allow multiple CommandType.Text and CommandType.StoredProcedure commands to be interleaved (which wasn't really possible before).
The text was updated successfully, but these errors were encountered:
Enhancement to #650.
When the server doesn't support
COM_MULTI
(i.e., everything except MariaDB), concatenate as many commands as possible into oneCOM_QUERY
packet. (This is only possible with the text protocol.)This will provide the most efficient network I/O possible, and should allow multiple
CommandType.Text
andCommandType.StoredProcedure
commands to be interleaved (which wasn't really possible before).The text was updated successfully, but these errors were encountered: