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
Unlike #2 , multi-query is a way to send several SQLs in a single request.
SQLs are spilited by ";"
We want a way to automaticly collect SQLs and send several SQLs together, then transparently give them back to upper layer.
ONLY a few situation can benifit from this
because there are potential deadlocks when doing this:
Unlike #2 , multi-query is a way to send several SQLs in a single request.
SQLs are spilited by ";"
We want a way to automaticly collect SQLs and send several SQLs together, then transparently give them back to upper layer.
ONLY a few situation can benifit from this
because there are potential deadlocks when doing this:
com.mysql.jdbc can achieve sending SQLs this way via addBatch() and set allowMultiQuery field to true,
But we want a automatic way of using it.
User should not know the details downside.
The text was updated successfully, but these errors were encountered: