I have a PLSQL Package that contains about 30 related procedures and functions.
my problem arrises with the following example:
IF X >= Y THEN
Z := Z + 1;
END IF;
the Z := Z + 1; is always executed.
if i program it it as follows it works as expected.
IF X >= Y THEN
Z := Z + 1;
ELSE...