[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Multi Table Dynamic Query Issues Using -rereadnolock

  • Thread starter Thread starter 2087
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top