Is there an equivalent for MySQL's "multi_query()" in PDO?
I like assembling multiple SQL queries into one string and executing them sim开发者_StackOverflowultaneously to ensure that they are executed atomically. I can't seem to do this with PDO like I could with the MySQL functions though.
Any thoughts?
Sending at once multiple queries to the MySQL server - won't make them atomic. For atomicity, use transactions. Read: ACID @ wikipedia
精彩评论