I have create a simple procedure Oracle but the
condtion is never execute:
--------------------------------
create or replace procedure TestIF(my_string in varchar2) is
begin
if my_chaine='BOB' then
dbms_output.put_line(my_string);
else
dbms_output.put_line('NOT BOB');
end if;
end TESTIF;
--------------------------------------------
With PL/SQL Devolopper testing my process with
my_string='BOB'
begin
-- Call the procedure
test5(my_string => :my_string);
end;
--------------------
Why my test is aborded?Bug with IF?

condtion is never execute:
--------------------------------
create or replace procedure TestIF(my_string in varchar2) is
begin
if my_chaine='BOB' then
dbms_output.put_line(my_string);
else
dbms_output.put_line('NOT BOB');
end if;
end TESTIF;
--------------------------------------------
With PL/SQL Devolopper testing my process with
my_string='BOB'
begin
-- Call the procedure
test5(my_string => :my_string);
end;
--------------------
Why my test is aborded?Bug with IF?

