Recent content by lio42

  1. L

    Work with IF oracle

    with trim it's same
  2. L

    Work with IF oracle

    my procedure is good on Oracle, my problem is in PL/SQL devolpper debugger. tool does not pass in the test when my variable is egal=' BOB ' if 'BOB' ='BOB' is never always carried out. else is always carried out My version PL/SQL d :confused: evelopper limited version?...
  3. L

    Work with IF oracle

    I'm replace ma_chaine with my_string, the test is same error??????
  4. L

    Work with IF oracle

    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...
Back
Top