VB6 ADO 记录集限制

发布于 2024-11-11 08:00:58 字数 94 浏览 7 评论 0原文

请不要笑,因为我问的是 VB6 问题?我必须做一些维护工作。有谁知道 VB6 ADO Recordset 可以返回的最大行数是多少?如果存在限制,是否有解决该限制的首选方法?

Please don't laugh because I'm asking a VB6 question? I have to do some maintenance work. Does anyone know what the maximum number of rows can be returned to a VB6 ADO Recordset? If there is a limit, is there a preferred method for getting around it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰沐子 2024-11-18 08:00:58

没有限制(请参阅文档链接),但如果您愿意,您可以提供一个。应该有一个 MaxRecords 属性你可以设置。您必须在打开记录集之前对其进行设置。

There is no limit (see link for documentation), but you can provide one if you want. There should be a MaxRecords property that you can set. You have to set it before you open the recordset.

墨洒年华 2024-11-18 08:00:58

RecordCount 属性是一个(签名)长(与 MaxRecords 一样),因此它不能容纳超过 2,147,483,647 行

The RecordCount property is a (signed) Long (as is the MaxRecords) so it won't be able to hold more than 2,147,483,647 rows

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文