Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set serveroutput on
declare
x varchar2(255); -- or whatever your return type is
begin
x := your_function;
dbms_output.put_line(x);
END;
/
VAR result VARCHAR2(4000)
EXEC :result := function(parameters)
PRINT result
select function(parameters) from dual;