Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Ocena zmiennych logicznych PL/SQL w Oracle Forms

Możemy to przetestować w SQLPlus, aby zobaczyć, co dzieje się w każdej z 3 sytuacji (true, false, null):

set serveroutput on

declare
  true_value boolean := true;
  false_value boolean := false;
  null_value boolean;
begin

    if not true_value then  --Should not pass
      dbms_output.put_line('True Value');
    end if;

    if not false_value then --Should pass
      dbms_output.put_line('False Value');
    end if;

    if null_value is null then --Just to make sure it is null
      dbms_output.put_line('Null Value is Null');
    end if;

    if not null_value then --Should not pass
      dbms_output.put_line('Null Value');
    end if;
end;
/

Co daje:

SQL> set serveroutput on
SQL>
SQL> declare
  2    true_value boolean := true;
  3    false_value boolean := false;
  4    null_value boolean;
  5  begin
  6
  7      if not true_value then  --Should not pass
  8        dbms_output.put_line('True Value');
  9      end if;
 10
 11      if not false_value then --Should pass
 12        dbms_output.put_line('False Value');
 13      end if;
 14
 15      if null_value is null then --Just to make sure it is null
 16        dbms_output.put_line('Null Value is Null');
 17      end if;
 18
 19      if not null_value then --Should not pass
 20        dbms_output.put_line('Null Value');
 21      end if;
 22  end;
 23  /
False Value
Null Value is Null

PL/SQL procedure successfully completed.

SQL>

Tak więc jedyną możliwą ścieżką kodu, która może dać oczekiwany wynik, jest to, że wartość przechodząca do warunku jest fałszem. Jeśli to nie jest to, co widzisz lub oczekujesz, to podczas zabiegu musi dziać się coś innego lub jako efekt uboczny.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Oracle.ManagedDataAccess nie rozpoznaje aliasu w parametrach połączenia

  2. Upłynął limit czasu żądania połączenia ODP.NET

  3. Wildfly nie udało się załadować modułu dla sterownika Oracle

  4. ORA usuń / skróć

  5. Czy istnieje instrukcja SQL, która podzieli 2 długie kolumny na kilka par kolumn?