DAO: db.OpenRecordSet(“Table1”, dbOpenTable, 0, dbPessimistic) - 第三个参数的作用是什么?

发布于 2024-09-07 22:48:02 字数 231 浏览 3 评论 0原文

使用VB6中的DAO:

db.OpenRecordSet("Table1", dbOpenTable, 0, dbPessimistic)

如果第三个参数设置为0,如上面所示,它的效果是什么? 0 不是文档中此参数的列出值。

编辑:如果将 0 指定为第三个参数,将打开什么类型的记录集?

Using DAO out of VB6:

db.OpenRecordSet("Table1", dbOpenTable, 0, dbPessimistic)

If the third argument is set to 0, as in the above, what is its effect? 0 is not a listed value for this argument in the documentation.

EDIT: What sort of recordset will be opened if 0 is given as the third argument?

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

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

发布评论

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

评论(1

⒈起吃苦の倖褔 2024-09-14 22:48:02

这是Options 参数。传递 0 相当于根本不传递任何选项。

查看 d_schnell 链接的手册页 :所有常数都有非零值。

您还可以直接在 VB6 IDE 中检查这些值。在代码窗口中键入受支持的值之一,例如 dbAppendOnly。将光标放在单词上,然后按 Shift+F2。对象浏览器打开,其中包含所有常量的列表。它们都有非零值(值显示在对象浏览器的底部)。

This is the Options argument. Passing 0 is equivalent to not passing any options at all.

Look at the manual page linked by d_schnell: all the constants have non-zero values.

You can also check the values directly in the VB6 IDE. Type one of the supported values in a code window, like dbAppendOnly. Put the cursor on the word and press Shift+F2. The object browser opens up, with a list of all the constants. They all have non-zero values (values are shown at the bottom of the object browser).

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