基于多表的Oracle APEX形式

发布于 2024-10-07 16:36:23 字数 53 浏览 1 评论 0原文

我可以在 APEX 中创建一个表单来创建/更新多个表中的记录吗?例如具有一对一关系的两个表。

Can I create a form in APEX which creates/updates records in multiple tables? For example two tables with a one-to-one relationship.

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

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

发布评论

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

评论(2

惟欲睡 2024-10-14 16:36:23

如果您使用自动行获取机制,则可以对两个表使用两个不同的 ARF。如果您想拥有更多控制权,可以使用页面进程自行定义INSERT/UPDATE语句。

If you are using Automated Row Fetch mechanism, you can use two different ARF for two tables. If you want to have more control, you can define your INSERT/UPDATE statements yourself usign Page Processes.

公布 2024-10-14 16:36:23

一种简单的方法是创建一个返回连接表的视图,并以此为基础创建 Apex 表单。您可能需要向视图添加 INSTEAD OF 触发器才能成功插入和更新。

A simple way would be to create a view that returns the joined tables and base the Apex form on that. You may need to add INSTEAD OF triggers to the view to be able to insert and update successfully.

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