Click here to Skip to main content
15,891,841 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hello,
I am building the application in windows forms with MS Access 2007. Can any body help to sort out the problem of i.e. "Operation must use an updateable query"


Thanks in Advance!
Posted

Check this[^] it'll help you
 
Share this answer
 
Chances are, your SELECT query isn't returning the primary key of the table you're querying. You DO have a primary key column in the table, right?? If not, you better create one.

Without the Primary Key column, there's no way to uniquely identify every record in the table, which allows UDPATE and DELETE sql statements to find those records.

That's why you're getting the error message...
 
Share this answer
 
Microsoft Access does not support the full T-SQL instruction set that might be the problem. I encountered that trying to use IF EXISTS(.... on an MS Access Database.
 
Share this answer
 
Plz Write you query string to understand the problem
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900