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.
ALTER PROCEDURE INSERT_SURVEY
( IDATE TIMESTAMP, IREMARKS VARCHAR(80))
RETURNS
( RSNUM INTEGER)
AS
begin
Insert into SURVEYS(START_DATE,REMARKS)
VALUES(:iDATE, :iREMARKS);
rSNUM = gen_id(SURVEY_NUMBER_GEN,0);
end
begin
with spInsertSurvey do
begin
ParamByName('IDATE').asDateTime := "my Value Date";
ParamByName('IREMARKS').asString :=' my remarks';
[i]//input [/i]
[b]execProc;[/b]
SurveyNumber := ParamByName('RSNUM').asInteger;
[i] //output[/i]
end;
end;