Monday 27 January 2014

call procedure through form personzliation

Table Creation
=========================
create table student1(sno number,sname varchar2(20),qual varchar2(5));


Procedure Creation
==================================
create or replace procedure XX_INSERT
is
begin
insert into student1 values(1,'SANDEEP','MCA');
commit;
end;


declare
begin
XX_INSERT();
end;


select * from student1







No comments:

Post a Comment