pears.SetQuestNumber

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Original SQL

CREATE PROCEDURE "pears"."SetQuestNumber"( 
  /* Application Maintained Function / Procedure - DO NOT EDIT*/
  IN "stagloc" CHAR(3),IN "stagid" CHAR(3),IN "sparentid" CHAR(20),IN "nvalue" DOUBLE ) 
BEGIN
  CALL "setquestanswer"("stagloc","stagid",NULL,"sparentid",CAST("nvalue" AS long VARCHAR))
END
GO
 
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."SetQuestNumber" IS 
{CREATE PROCEDURE SetQuestNumber 
 
/* Application Maintained Function / Procedure - DO NOT EDIT*/
 
(IN stagloc CHAR(3),IN stagid CHAR(3),IN sparentid CHAR(20),IN nvalue DOUBLE)
BEGIN
  CALL setquestanswer(stagloc,stagid,NULL,sparentid,CAST(nvalue AS long VARCHAR))
END
}