Microsoft OLE DB Provider for ODBC Drivers
error '80004005'
[Microsoft][ODBC Visual FoxPro Driver]Cannot update the
cursor.
/_asp/test.asp, line 11
It's been a week now figuring out how to solve this
problem ("cannot update the cursor"). I am using IIS 5.1
in Windows XP Professional and Visual FoxPro ODBC Driver
(6.01.8629.01). System DSN is configured properly. I
never have this problem before when I was using IIS
4.0/5.0 in NT 4.0 and Windows 2000 Professional OS.
Any suggestions? Thanks in advance.
Here's the code for reference:
<% language="VBScript"%>
<!-- #include file=../_inc/adovbs.inc -->
<html>
<head><title></title>
</head>
<body>
<%
Dim oConn
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open("DSN=UNR;UID=sa;PWD=pwd")
oConn.Execute("UPDATE nursegen SET FNAME = 'XXXX' WHERE
imgcode = '0000000001'")
oConn.Close
Set oConn = Nothing
%>