Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

when button-pressed-trigger

582889Jun 13 2007 — edited Jun 13 2007
Hi,I am new to forms developer tool.
I want to insert record when the user presses the button.
I created a when button-pressed-trigger with a pl-sql code:
BEGIN
insert into temp (num)
values(:temp.num);
commit;
END;

When I run the form, after the user enters number to textbox and press the button, duplicate values are inserted to my database.For example if user enters 5, two 5 is recorded in my database?
Please help me...
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 11 2007
Added on Jun 13 2007
8 comments
967 views