Oracle
 sql >> Database >  >> RDS >> Oracle

come convalidare il tipo di dati intero nella procedura di Oracle

Stranamente, PL/SQL non applica INTEGER parametri. Mi aspetto che Oracle converta implicitamente i dati o generi un errore se 5.2 è stato passato a un INTEGER parametro. Sembra che dovrai aggiungere la tua convalida:

create or replace procedure test_procedure(a integer) is
begin
    if a is not null and a <> trunc(a) then
        raise_application_error(-20000, 'Parameter must be an integer');
    end if;
end;
/

--Works
begin
    test_procedure(5.0);
end;
/

--Fails with "ORA-20000: Parameter must be an integer".
begin
    test_procedure(5.2);
end;
/