Cursor preparation Ex:
PREPARE round_id FROM "SELECT NVL(ROUND(?, ?),0) FROM systables WHERE tabid=1"
DECLARE round_cur CURSOR FOR round_id
FREE round_id
Execute Ex:
LET var1=125.62
LET var2=2
OPEN round_cur USING var1, var2
EXECUTE round_id INTO mval
Regards,
Shriyan "No amount of careful planning will ever replace dumb luck."
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.