I've read that MS Access supports transactions but when I try to use it, I get the error Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'. All I'm writing out is...
BEGIN TRANSACTION
INSERT INTO MyTable1(Field1, Field2, etc...) VALUES (Value1, Value2, etc...)
INSERT INTO MyTable2(Field1, Field2, etc...) VALUES (Value1, Value2, etc...)
COMMIT TRANSACTION
This is in a stored query in Access. Why is it giving me this error if it is supported?
http://msdn.microsoft.com/en-us/library/office/bb208950(v=office.12).aspx