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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updatable Query

Status
Not open for further replies.

cabobound

Programmer
Jul 11, 2007
80
US
I am writing a small webpage that needs a little data maint. The connection I have is the same I always use but now I am getting a "Operation must use an updateable query."

Set xConn = Server.CreateObject("ADODB.Connection")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("mcl.mdb")
xConn.Open DSNtemp

The sql does a simple update statement. Does anyone know why this would be happening?

K
 
this is an access issue. security on the database must allow you to do an update. i have had this issue before. the ISP had to give me security permission to do an update to my database.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top