G
Guest
I have been working my way through an ASP.NET tutorial and I find that any
code that attempts to update an Access table evokes the error: "Operation
must use an updateable query."
A search of the MSDN Knowledge Base turned up an article describing my
problem exactly and recommending that I
(a) Configure the ASP.NET worker proces to run under the SYSTEM account in
the <processModel> section of the Machine.config file.
or
(b) For security reasons, Microsoft recommends that you enable impersonation
on your ASP.NET application. This method works if the impersonated user has
necessary permissions to the computer and the database that you are accessing.
Unfortunately, I have been unable to find any information on how to
accomplish either of the above. I'm new to .NET and am still feeling my way
around. I'd greatly appreciate any advice.
code that attempts to update an Access table evokes the error: "Operation
must use an updateable query."
A search of the MSDN Knowledge Base turned up an article describing my
problem exactly and recommending that I
(a) Configure the ASP.NET worker proces to run under the SYSTEM account in
the <processModel> section of the Machine.config file.
or
(b) For security reasons, Microsoft recommends that you enable impersonation
on your ASP.NET application. This method works if the impersonated user has
necessary permissions to the computer and the database that you are accessing.
Unfortunately, I have been unable to find any information on how to
accomplish either of the above. I'm new to .NET and am still feeling my way
around. I'd greatly appreciate any advice.