Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Problem with my Procedure, Please Help

Re: Problem with my Procedure, Please Help

From: Venkat <vreddy_at_no_spamix.netcom.com>
Date: 1998/05/25
Message-ID: <6kc07d$en6@sjx-ixn9.ix.netcom.com>#1/1

create procedure myproc (a number ,b number ,c varchar2) as insert into table_name (x,y,z) values (a,b,c); commit;
end;

then call myproc passing 3 parameters
exec (100,200,'test');

Venkat

enclose
>create procedure myproc .....
>as
>insert into table_name (x,y,z) values ('&a','&b','&c');
>commit;
>end;
>this accepts input from me but does not insert them in the table.
>
Received on Mon May 25 1998 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US