I'm running MySql 3.23.31 on my dev machine and 3.23.54 on production (hosted).
At various times I have needed to batch process and have had no problems with queries which are infact multiple inserts for example.
I'm creating a data intensive form and I want to be able to batch process the results of the form. I have a class which builds up a big string which I'm then passing to mysql. I'm using @ to process it.
However!
I'm getting "Unable to perform the query" whenever there is more than one statement. I'm finishing each statement with a semicolon.
Any ideas or do I abandon batch processing?