I have to use procedures with the component Toraclequery,
I do not remember the way to do,
I wrote a procedure, very simple, without variable,I created the table that goes with it(found in Allroundautomation), all works well on the database and PL / SQL
The procedure in Oracle :
CREATE OR REPLACE PROCEDURE Augmentation_1
IS
Begin
Update DOA_EMP Set sal = sal * 1.2
Where empno = 7900 ;
End;
I call it inside with Oracle :
Declare
LR$Emp DOA_EMP%Rowtype ;
Begin
Select * Into LR$Emp From DOA_EMP Where empno = 7900; -- lecture ligne avant mise