====== pears.IQXNetStringToTime ======
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
===== Original SQL =====
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."IQXNetStringToTime" IS
{create function 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
}