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.
create or replace function bool (bool_in varchar2)
return boolean is
begin
if upper(bool_in) = 'T' then
return true;
elsif upper(bool_in) = 'F' then return false;
else return null;
end if;
end;
/