我想检查我的项目是否在我的数据库中变得唯一,并且数据库中存在的项目必须是明确的(这个项目)。
所以我对这个项目使用触发 when-validate-item 并为表单全局触发 when-timer-expired。
这是我的代码:
//触发when-Validate-item:
declare
i number;
vTimer TIMER;
begin
IF //condition then
i := show_alert('ERROR');
/* Create a timer with a 10 Millisecond delay */
vTimer :=create_timer('TEMP',10,no_repeat);
END IF;
end;
//当定时器过期时触发
GO_BLOCK ('name_block');
:name_block.item1:=NULL;
DELETE_TIMER('TEMP');
但在运行时,我收到此错误:
FRM-40202 必须输入字段