I like assembling multiple SQL queries into one string and executing them simultaneously to ensure that they are executed atomically. I can\'t seem to do this with PDO like I co
Sending at once multiple queries to the MySQL server - won't make them atomic. For atomicity, use transactions. Read: ACID @ wikipedia