识别记录集的类型

发布于 2024-10-30 22:45:19 字数 33 浏览 0 评论 0原文

我们如何确定记录集的类型是普通记录集还是分层记录集?

How can we determine the type of a recordset as a normal or hierachical?

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

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

发布评论

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

评论(2

携余温的黄昏 2024-11-06 22:45:19

扫描 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.

め七分饶幸 2024-11-06 22:45:19

我不认为记录集对象本身有什么区别。区别在于记录集内容的字面定义/组织:

分层记录集是
记录集由
记录的层次结构。例如,任何
带有父/子的记录集
关系可以定义为
分层记录集。与连接不同
这基本上复制了所有的
每个孩子的父母数据
记录在分层记录集中
包含父字段集和
一个字段是子字段
记录集。

来源与更多信息:
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:

A hierarchical recordset is a
recordset that is comprised of a
hierarchy of records. For example, any
recordset with a parent/child
relationship can be defined as a
hierarchical recordset. Unlike a join
which basically duplicates all of the
parent data for each child, each
record in a hierarchical recordset
contains the set of parent fields and
one field which is the child
recordset.

Source & more info:
http://www.insteptech.com/techLibrary/vbClassic/vb6_hierarchical.htm

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