"Operation must use an updateable query".
I have an old application with an Access database (Access 2003), but the front end is written in C#.NET (4.5).
The database is over 10 years old, and the C# front-end has worked fine for around 7 years. I wrote it myself, so I am familiar with the internals.
Within the last two weeks, I have started getting the error listed above whenever any attempt to update or insert rows occurs. I had made no changes to the program in over 2 years.
I thought, "no problem, I am a programmer, I'll debug it". Interestingly, when I run inside visual studio, the program works fine. I get no errors. But even after recompiling, then upgrading from VS2010 to VS2012 and form .NET 4.0 to .NET 4.5, I continue to get the error above unless I am running inside Visual Studio. Note: this is not a web application. It is a stand-alone windows application.
I have done a google search and have found other cases where people are getting this same error, but none seem to match the problem I am having.
All my rows have primary keys that are auto-increment.
Any help would be appreciated.