|
WHILE...ENDWHILE (Short Name: WHI...ENDW)
|
|
| · | Do not clear variables in the WHILE loop. Rather, set those variables to null.
|
| · | Do not define variables within the WHILE loop. Only define variables outside of the loop because the values can change within the loop.
|
| · | If you issue multiple SET VARIABLE commands on a single command line, then those variables will not be optimized. If you want to increase the speed for that loop, you should put the SET VARIABLE commands on separate lines.
|