DAO: db.OpenRecordSet(“Table1”, dbOpenTable, 0, dbPessimistic) - 第三个参数的作用是什么?
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是
Options
参数。传递0
相当于根本不传递任何选项。查看 d_schnell 链接的手册页 :所有常数都有非零值。
您还可以直接在 VB6 IDE 中检查这些值。在代码窗口中键入受支持的值之一,例如
dbAppendOnly
。将光标放在单词上,然后按 Shift+F2。对象浏览器打开,其中包含所有常量的列表。它们都有非零值(值显示在对象浏览器的底部)。This is the
Options
argument. Passing0
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 pressShift+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).