I am developing a small desktop application using C#.NET and MS-Access. I don\'t have any prior experience of MS-Access. I want to know if we can use transa
It looks like we do: MSDN - TRANSACTION Statement (Microsoft Access SQL)
Transactions are not started automatically. To start a transaction, you must do so explicitly using:
BEGIN TRANSACTION
Conclude a transaction by committing all work performed during the transaction:
COMMIT [TRANSACTION | WORK]
Conclude a transaction by rolling back all work performed during the transaction:
ROLLBACK [TRANSACTION | WORK]