如何使用树表显示 Oracle SQL 表中的所有行?

发布于 2024-09-07 20:52:24 字数 330 浏览 2 评论 0原文

我有这张表:

CREATE TABLE perarea ( id_area INT 主键, 名称 VARCHAR2(200), id_areapadre INT 引用 perarea(id_area) );

添加它是为了访问数据:

alt text

我的目的是创建一个层次结构,在树视图中显示区域及其下级。然后,当用户单击一个节点时,树表右侧的一个表会加载该区域的所有员工。

首先,我如何填充树表?

谢谢你!

I have this table:

CREATE TABLE perarea
(
id_area INT primary key,
nombre VARCHAR2(200),
id_areapadre INT references perarea(id_area)
);

And this was added to access the data:

alt text

My intention is to create a hierarchy showing areas and their subordinates in the treeview. Then when a user clicks a node, have a table on the right of the treetable load all employee from that area.

First thing's first though, how can I populate the treetable?

Thank you!

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

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

发布评论

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

评论(1

流绪微梦 2024-09-14 20:52:24

想到 JTree作为底层 TreeModelTreeModel,旨在与 org.netbeans.swing.outline.Outline,说明了分层FileTreeModel 可能会指导您。当您使用 Oracle 时,您可能会找到文章来自数据库查询的动态 JTree< /em> 也很有帮助。

附录:文章 了解 TreeModel 也可能会有所帮助。

附录:另请参阅使用 FileTreeModel 的相关示例

It's helpful to think of a JTree as a view of the underlying TreeModel. An example implementation of TreeModel, intended for use with org.netbeans.swing.outline.Outline, illustrates a hierarchical FileTreeModel that may guide you. As you are using Oracle, you may find the article Dynamic JTree from database query helpful, too.

Addendum: The article Understanding the TreeModel may be helpful, too.

Addendum: See also this related example that uses FileTreeModel.

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