以oracle形式更新board

发布于 2024-10-15 07:22:17 字数 162 浏览 3 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

毁虫ゝ 2024-10-22 07:22:17

Oracle Forms 中的帮助文件/在线文档提供了有关创建计时器的示例代码。

创建一个计时器,也许在 WHEN-NEW-FORM-INSTANCE 触发器下

DECLARE
    timer_id timer;
begin
    timer_id := CREATE_TIMER('TIMER1',20000,REPEAT);
end;

这将创建一个重复计时器,每 20 秒触发一次。

现在在 WHEN-TIMER-EXPIRED 触发器下编写计时器到期处理程序

declare 
     timer_id timer;

begin
     -- code for updating the relevant field(s) 
end;

The help file/ online documentation in Oracle Forms features sample code on creating timers.

Create a timer, perhaps under WHEN-NEW-FORM-INSTANCE trigger

DECLARE
    timer_id timer;
begin
    timer_id := CREATE_TIMER('TIMER1',20000,REPEAT);
end;

This will create a repeating timer which will fire every 20 seconds.

Now under WHEN-TIMER-EXPIRED trigger write the timer expiration handler

declare 
     timer_id timer;

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