当表有 42 个字段时,为什么 .NET 中的 MS Access adodb 在字段计数中返回 34?
当表有 42 个字段时,为什么 .NET 中的 MS Access adodb 在字段计数中返回 34? 我在 MS Access mdb 数据库的表中看到 42 个字段。但 .NET 中的 ADODB 层只看到 34 个字段。当我调用 reader 类的方法 getOrdinal("FieldName") 时,发生 Outofrange 异常。
我在设置连接、许可证或其他东西时缺少什么吗?
谢谢
Why MS Access adodb in .NET returns 34 in fieldcount when table has 42 fields ?
I see 42 fields in table of my MS Access mdb database. But ADODB layer in .NET sees only 34 fields. The Outofrange exception occures when I am calling method getOrdinal("FieldName") of reader class.
Is it something I am missing in setting up connection, license or anything?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自从编写代码以来,您是否更改了表?有时您必须重新链接 Access 内的表,否则它将看不到新列。
Have you changed the table since you wrote the code? Sometimes you have to relink the tables inside Access, or it won't see the new columns.