sql >> Base de Datos >  >> RDS >> Oracle

cómo validar el tipo de datos entero en el procedimiento de Oracle

Curiosamente, PL/SQL no aplica INTEGER parámetros Esperaría que Oracle convierta implícitamente los datos o arroje un error si 5.2 se pasa a un INTEGER parámetro. Parece que necesitará agregar su propia validación:

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;
/