Hello,
When debugging a package, I've got a strange behavior. The comparison operation seems don't work properly.
See below code:
During debugging, I can see that p_flag has a value of 'PROCESS'.
But neveretheles, it goes to the statement inside the condition. How could it happen?
Pls help me to resolve this issue. Do I need to configure anything?
When debugging a package, I've got a strange behavior. The comparison operation seems don't work properly.
See below code:
Code:
--
IF p_flag <> 'PROCESS' THEN
batchproc.comfile := UTL_FILE.FOPEN('HOMECOM','result','w');
END IF;
--
But neveretheles, it goes to the statement inside the condition. How could it happen?
Pls help me to resolve this issue. Do I need to configure anything?