I am using Visual studio 2005 and Access 2007.
I get the following error
"System.InvalidOperationExceptin: The ITransactionLocal interface is not supported by the 'Microsoft.ACE.OLedb.12.0' provider."
Is this because transactions are not supported by access?
Here is my code.
using (TransactionScope TransacScope = new TransactionScope())
{
//insert and update operations
TransacScope.Complete();
}