使用 POST 键提交;

KEY-COMMIT with POST;

在表单触发器中创建的 KEY-COMMIT 具有以下某人编写的代码

IF :SYSTEM.FORM_STATUS = 'CHANGED' THEN
  POST;
END IF;

有谁知道POST; ?

非常感谢

是的,我知道,但我不确定我是否能比 Forms Builder 在线帮助更好地表达它,想必您已经看过了?

Writes data in the form to the database, but does not perform a database commit. Oracle Forms first validates the form. If there are changes to post to the database, for each block in the form Oracle Forms writes deletes, inserts, and updates to the database.

Any data that you post to the database is committed to the database by the next COMMIT_FORM that executes during the current Runform session. Alternatively, this data can be rolled back by the next CLEAR_FORM.