Joined: 27 Mar 2003 Posts: 1564 Location: Hartford, CT.
Quote:
How do I incrment the Resultset Value used in the construction of the output message to match the value in the select?
By introducing a variable that you can increment:
Code:
DECLARE resultsetIndex INTEGER 1;
WHILE ........
SET NAME = TRIM(TRAILING ' ' FROM Environment.RESULTSET.[resultsetIndex].NAME);
SET resultsetIndex = resultsetIndex + 1;
Do other stuff.....
END WHILE;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum