基于多表的Oracle APEX形式
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用自动行获取机制,则可以对两个表使用两个不同的 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 yourINSERT/UPDATE
statements yourself usignPage Processes
.一种简单的方法是创建一个返回连接表的视图,并以此为基础创建 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.