开发者

Error: operation must use an updateable query

开发者 https://www.devze.com 2022-12-28 15:34 出处:网络
After making the set up of the application(developed using VS 2008 and M开发者_如何转开发S Access) the installation in another system works fine. But whenever I try to change the Password or id(there

After making the set up of the application(developed using VS 2008 and M开发者_如何转开发S Access) the installation in another system works fine. But whenever I try to change the Password or id(there is a login window which the user need to access to get into the main window) it shows an error sayin "operation must use an updateable query". Can anyOne suggest the remedy?

Thank you, Indranil


Have you checked the permissions are the same for both set-ups? You will need a minimum of read and write permissions on the folder that contains the Access file.

To check permissions, it may be possible to right-click on the file or folder and choose Properties. The Security tab will show the details.

For web applications, you need to check the permissions for IUSRS.


  1. To fix this error, you need to run your application in Administrator Privilege
  2. Do the following steps to run the application in Administrator Privilege
  3. Change Level From

    <requestedExecutionLevel level="asInvoker" uiAccess="false" />

    To

    <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />

It is available in UAC settings, located in the Project Settings

0

精彩评论

暂无评论...
验证码 换一张
取 消