Files
2025-12-17 13:02:12 +01:00

312 B

GET_PARAM_VALUE

Codice Sorgente

function get_param_value(p_name varchar2)
return varchar2 as
    v_result varchar2(255);
begin
    select strvalue
    into v_result
    from tb_config
    where upper(name) = upper(p_name);

    return v_result;
exception when others then
    return null;
end;