爲什麼我必須單擊保存按鈕在formservlet的左上角,以便我的插入查詢將保存到數據庫?對不起你們,在這裏很感謝新手Oracle Forms 10g - 爲什麼我必須點擊保存,以便我的插入查詢將保存到數據庫
這裏是添加按鈕觸發我的PL SQL代碼:
begin
insert into tb_distributor
(distributor_id, distributor_name, distributor_type, distributor_desc)
values
(distributor_id.nextval,:DISTRIBUTOR_NAME, :DISTRIBUTOR_TYPE, :DISTRIBUTOR_DESC);
commit;
end;