h*****l 发帖数: 184 | 1 【 以下文字转载自 BuildingWeb 讨论区,原文如下 】
发信人: hanibal (汉尼拔), 信区: BuildingWeb
标 题: ASP问题: Operation must use an updateable query
发信站: The unknown SPACE (Fri Jun 8 23:04:03 2001) WWW-POST
我用ASP处理ACCESS数据库。
但运行INSERT时,出来错:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use
an updateable query.
百思不得其解, 请帮我看看, 错误出在SQLInsert那句上:
Set corConn = Server.CreateObject("ADODB.Connection")
dbpath = Server.mappath("fpdb\mbaalumni.mdb")
corConn.ope | g******p 发帖数: 18 | 2
This is why. You have to open the database in an editable
mode, the default is for read-only.
http://learnasp.com/learn/FAQdbUpdate.asp
【在 h*****l 的大作中提到】 : 【 以下文字转载自 BuildingWeb 讨论区,原文如下 】 : 发信人: hanibal (汉尼拔), 信区: BuildingWeb : 标 题: ASP问题: Operation must use an updateable query : 发信站: The unknown SPACE (Fri Jun 8 23:04:03 2001) WWW-POST : 我用ASP处理ACCESS数据库。 : 但运行INSERT时,出来错: : Microsoft OLE DB Provider for ODBC Drivers error '80004005' : [Microsoft][ODBC Microsoft Access Driver] Operation must use : an updateable query. : 百思不得其解, 请帮我看看, 错误出在SQLInsert那句上:
|
|