Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> debugging program using GOTO heavily
LOOP
BEGIN
GOTO INSERTREC
.....
GOTO UPDATEREC
.....
GOTO DONEXTREC
.....
<<INSERTREC>>
...
NULL;
<<UPDATEREC>>
....
NULL;
<<DONEXTREC>>
....
NULL
END;
? WHEN PROCEDURE BRANCHES TO <<INSERTREC>> will the code in UPDATEREC
and Get executed unless i explicitly tell it to GOTO DONEXTREC
Received on Mon Dec 13 2004 - 10:52:28 CST