2
2087
Guest
Also I think that using REPEAT has an overhead that using a DO does not. Don't know whether the difference would be noticeable but might be worth a try. Instead of REPEAT: lvQueryHandle:GET-NEXT(). IF lvQueryHandle:QUERY-OFF-END THEN LEAVE QueryResult. END. Try this (it's also less code) DO WHILE lvQueryHandle:GET-NEXT(): END.
Continue reading...
Continue reading...