when button-pressed-trigger
582889Jun 13 2007 — edited Jun 13 2007Hi,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...