create function "pears"."IQXNetStringToTime"(
/* Application Maintained Function / Procedure - DO NOT EDIT*/
in "stime" char(20) )
returns time
begin
declare "rv" time;
set "rv" = cast("stime" as time);
return "rv"
exception
when others then return null
end