Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有两个包含 250 多个字段的表。我们需要一次使用一个 Recordset (ADO) 读取和更新数据,而不是单独处理表(在 vb 6 中),但似乎 Ms_access 对字段数(250)有限制。
有什么建议吗?谢谢你。
表中字段数的访问限制= 255 。该限制也适用于查询。基于这些表或查询的记录集“继承”了相同的限制。
您将不得不以某种方式重构:重新设计表格;将您的记录集处理拆分为处理 <= 255 个字段的批次。