I'm trying to execute a statement like:
UPDATE table1 SET name="Joe" WHERE id='1'; UPDATE table2 SET name="Bob" WHERE id='2'
But, when executing the query, I get:
Microsoft JET Database Engine error '80040e14' Characters found after end of SQL statement.
It works when I execute the statements separately, though.
So I'm guessing there's absolutely no way to execute multiple queries in a single SQL statement when using Microsoft Access/JET database engine?