L
Lieven De Foor
Guest
Hi, We have a procedure that is run by the client on AppServer, having a parameter like: DEFINE INPUT-OUTPUT PARAMETER DATASET-HANDLE DynamicDataset. The dataset goes back and forth between client and server. Does this object need to be deleted on the AppServer side before returning to the client to prevent memory leaks? Or is this done automatically? Or not needed at all? e.g. DEFINE INPUT-OUTPUT PARAMETER DATASET-HANDLE DynamicDataset. /* CRUD actions on dataset here */ FINALLY: DELETE OBJECT DynamicDataset. /* Is this needed? */ END FINALLY.
Continue reading...
Continue reading...