| calling procedure [message #388997] |
Thu, 26 February 2009 22:24  |
varosh81
Messages: 178 Registered: February 2008 Location: CHENNAI
|
Senior Member |
|
|
I have created procedure in program units.I placed pushbutton in my form.In progrmunits I have written following code
PROCEDURE sample(id number,name varchar2,mar number) IS
v_row stud%rowtype;
BEGIN
v_row.studid := id;
v_row.studentname := name;
v_row.major := mar;
insert into stud values (v_row);
END;
my question if I press the push button above the procedure will be execute i mean record will insert inthe table.
Send Solution
Thanks and Regards
Varosh
|
|
|
|
|
|
|
|
|
|