以oracle形式更新board
Oracle 表单中是否有类似线程的东西用于更新某一部分?我想创建一个消息框并使用新事件更新该部分,因此我需要在我的 oracle 表单中添加诸如线程或计时器之类的东西。有什么例子或想法吗?
我正在使用 Oracle forms 6i,但我也可以转换为 10g。我的oracle服务器版本是9.
Is there anything like thread in Oracle forms for updating one part? I want to create a message box and update that part with the new events, so I need to have something like thread or Timer in my oracle form. Any examples or ideas?
I am working with Oracle forms 6i, but I can convert to 10g also. My oracle server version is 9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle Forms 中的帮助文件/在线文档提供了有关创建计时器的示例代码。
创建一个计时器,也许在 WHEN-NEW-FORM-INSTANCE 触发器下
这将创建一个重复计时器,每 20 秒触发一次。
现在在
WHEN-TIMER-EXPIRED
触发器下编写计时器到期处理程序The help file/ online documentation in Oracle Forms features sample code on creating timers.
Create a timer, perhaps under
WHEN-NEW-FORM-INSTANCE
triggerThis will create a repeating timer which will fire every 20 seconds.
Now under
WHEN-TIMER-EXPIRED
trigger write the timer expiration handler