[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Is there a good approach to defining temp-table/prodataset as class property?

Status
Not open for further replies.
P

Peter Judge

Guest
You can't define property as a temp-table or dataset type, nor can you define a temp-table/dataset as public in a class. You'll have to either - expose it as a handle - return it as an output parameter in a method - add read/write methods to expose certain aspects of data - ugly: define a JsonObject property with getter and setter methods that READ-JSON and WRITE-JSON Those are the approaches off the top of my head. There will be others, but the moral of the story is that there's no easy/pretty/good way of doing this yet. -- peter

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