====== pears.IQXNetStringToTime ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Original SQL ===== 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