Forum Post: RE: Accessing temp-tables in a dataset?

Status
Not open for further replies.
M

Mike Fechner

Guest
Had a second read on your source... The method DoWork returns the handle of the dataset. Couldn't it OUTPUT a DATASET-HANDLE or DATASET? In both cases you could call it with DoWork (OUTPUT DATASET dsEntity). DoWork is called as a method of a reference variable. So it's a method in the same class or a function in that .p? A function in a SUPER-PROCEDURE? Depending on the whole situation, the DoWork method/function may already be working on the same instance of the Dataset as the caller and no parameter passing might be required. If not, you might want to read about BY-REFERENCE passing of Dataset parameters. And while you're at it BIND as well.

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