on-select 触发器是否在查询过程触发器触发期间/之后触发?
我正在查看一个表单,它使用存储过程作为数据块源。我试图找到该块被填充的时间/地点。
作为查询数据源类型的块为过程,但作为数据源名称列出的过程不执行任何操作 - 实际上什么也不执行。过程中的代码是
begin
null;
end;
浏览负责处理表单的包中的过程列表,我找到了一个填充数据的过程。
搜索这个过程,我发现这个过程是在ON-SELECT
触发期间调用的。
那么 - ON-SELECT
触发器是否在 QUERY-PROCEDURE
事件期间/之后触发?如果没有的话什么时候会被解雇?
我在 Windows Vista 上使用 Oracle Forms10.1.2.3.0,32 位。
I have a form that I'm looking at, which makes use of stored procedures as data block source. I'm trying to find when/where the block gets populated.
The block as query data source type as Procedure, but the procedure listed as the data source name does nothing - literally nothing. The code in the procedure is
begin
null;
end;
Going through the list of procedures in the package responsible for handling the form, I found a procedure which does populates the data.
Searching for this procedure, I found that this procedure is invoked during ON-SELECT
trigger.
So - does ON-SELECT
trigger get fired during/after QUERY-PROCEDURE
event? If not when does it get fired?
I'm using Oracle Forms10.1.2.3.0, 32-bit on Windows Vista.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 ON_SELECT 的 Forms 在线帮助:
From the Forms on-line help for ON_SELECT: