[Stackoverflow] [Progress OpenEdge ABL] What happens if we don't delete object handle? How it affects? How do we see that? - PROGRESS 4GL

Status
Not open for further replies.
B

Bharat

Guest
I am using below query which has handle but I can see nothing happens even if I delete/not delete the object of the handle. But everyone says always delete the object finally. Why we need to delete them? what happens if we don't delete them? How do we see that ?

Code:
finally:
  if valid-handle(hQueryTest)   then delete object hQueryTest no-error.
  if valid-handle(hQuerytestvalue) then delete object hQuerytestvalue no-error.
end finally.

Continue reading...
 
Status
Not open for further replies.
Top