ASP Classic Error: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal. on Database connection

ASP Classic Error: 3265 Item cannot be found in the collection corresponding to the requested name or ordinal. on Database connection

我不确定为什么会出现以下错误?

是否是数据库连接错误?

以下代码显示此错误

错误:

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

可能您在下面有一个 "Select",而您正在尝试获取不在 select 中的项目。

喜欢:

select 姓名,phone 来自任何

狗名 = rs("dogname")

因为 "dogname" 不在 select 列表中,所以你得到了那个错误

感谢您的回复和评论。 但这是我修复它的方法。

在 IIS 'Application pool' 上设置 32 位选项是 'false' 所以它显示此 error.I 的原因将其更改为 true 并开始工作。