web = ddloc & "file.mdb" connstring = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath(web) set db=server.createobject("ADODB.connection") db.open connstring this is the code to connect! These are the things that I already did: - IUSR + IWAM has modify on mdb + mdb folder + tmp folder Changed security in IIS to write I still receive: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. Can someone help me out
Try this. http://www.attention-to-details.com/newslog/32p-operation-must-use-an-updateable-query.asp I had alot of problems like you did when I will programming a ASP code for someone...
thnx for your reply but still nothing. I gave users write permission to the mdb + mdb folder GRRRRRRRRRRRRRR.
The problem is with the sql query, not permissions. You will need to supply the query to identify the problem.
Problem solved! Permissions! Deleted the mdb folder and recreated in an other folder. Set the permissions. Everything ok, now.