W
Web Search Store
I'm getting this error on my web page:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.
/searchweb33.asp, line 5014
Here is the code producing it:
myDSN="d:\data\main_database.mdb
set conntemp3=server.createobject("adodb.connection")
conntemp3.Mode = 3 '3 = adModeReadWrite
conntemp3.open myDSN
sqltemp="update [db_version_table] set db_title='used'"
set rstemp3=conntemp3.execute(sqltemp)
The error is produced on the execute statement
What am I missing here? This code used to work fine on another server.
It says use an updateable query, and my query is updatable.
Any help would be appreciated.
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.
/searchweb33.asp, line 5014
Here is the code producing it:
myDSN="d:\data\main_database.mdb
set conntemp3=server.createobject("adodb.connection")
conntemp3.Mode = 3 '3 = adModeReadWrite
conntemp3.open myDSN
sqltemp="update [db_version_table] set db_title='used'"
set rstemp3=conntemp3.execute(sqltemp)
The error is produced on the execute statement
What am I missing here? This code used to work fine on another server.
It says use an updateable query, and my query is updatable.
Any help would be appreciated.