我不确定为什么会出现以下错误?
是数据库连接错误吗?
以下代码显示此错误
错误:
3265 Item cannot be found in the collection corresponding to the requested name or ordinal.
代码:
MM_connUsers_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath ("/data/base/path/database.mdb") &"; Jet OLEDB:Database Password=xxxxxx;"
If Err.Number <> 0 Then
Response.write(Err.Number)
response.write(Err.description)
response.write("<br>")
end if
答案 0 :(得分:1)
你可能在下面有一个“选择”,你正在试图让一个项目不在选择中。
像:
从
中选择姓名,电话dogname = rs(“dogname”)
由于“dogname”不在选择列表中,您会收到该错误
答案 1 :(得分:1)
感谢您的回复和评论。 但这是我如何解决它。
在IIS'应用程序池'设置32位选项为'false',这就是为什么它显示此错误。我将其更改为true并开始工作。