Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft JET Database Engine error '80004005'

Status
Not open for further replies.

accuransx

Programmer
Sep 23, 2000
62
MY
My codes run ok in my local PC but when I upload to my server, i got this error:

Microsoft JET Database Engine error '80004005'
Operation must use an updateable query.

/ZigUpdateStatus.asp, line 39



Can anybody explain this? These are my codes:

set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
stropen= server.MapPath("PasarApplicant.mdb")
conn.Open stropen
strsql="UPDATE unitlist SET name='" & namaorang & "',nric='" & nricorang & "',status= '" & Request.Form("cars") & "' WHERE unitno='" & Request.Form("fLotNo") & "'"
' how to update multiple fields
set rs=conn.Execute(strsql)
'set rs=conn.Execute strsql
Response.Redirect "zigStatus.asp"
 
Hi,
What is the status of your problem ? Can you share with us how did you fix it ?


Thank you.
RR.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top