识别记录集的类型
我们如何确定记录集的类型是普通记录集还是分层记录集?
How can we determine the type of a recordset as a normal or hierachical?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们如何确定记录集的类型是普通记录集还是分层记录集?
How can we determine the type of a recordset as a normal or hierachical?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
扫描 Recordset 中的 Fields 集合,检查每个 Field 的 Type 属性。如果您找到任何 .Type = adChapter,那么它就是一个分层记录集。
Scan through the Fields collection in the Recordset, checking each Field's Type property. If you find any where .Type = adChapter then it is a hierarchical Recordset.
我不认为记录集对象本身有什么区别。区别在于记录集内容的字面定义/组织:
来源与更多信息:
http://www.insteptech.com/techLibrary/vbClassic/vb6_hierarchical.htm
I don't think there is a difference in the recordset object itself. The difference is in the literal definition/organization of the contents of the recordset:
Source & more info:
http://www.insteptech.com/techLibrary/vbClassic/vb6_hierarchical.htm