Dynamic array or resize extend?

Status
Not open for further replies.
S

Sebastien DErrico

Guest
This is a superfluous question. Is there any dynamic array or list in Progress 10.2B?

Example:

I create a base class called "InventoryTransaction". I read a MSSQL table from Progress and I would like to create an instance of InventoryTransaction class for each record found then add it to a "list/array" so I can later process them.

Is there something like MyArray:Add(MyItem) that will increase automatically the array size +1 then will add the instance of MyItem to the array?

I discovered the function EXTENT to set a size dynamically to an array but I do not know the count before reading all the transaction in the MSSQL table. Alternatively, I could execute a "select count(*) from MyTable" before reading all the transaction to retrieve the count and then extent the array.

Thank you! Happy friday! Sebastien

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