Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a multidimensional array in Progress 4GL?

There are multidimensional arrays in Progress 4GL? If "yes", how to make this in this language. Any ideas?

like image 558
Julio Cesar Boaroli Avatar asked Dec 20 '22 00:12

Julio Cesar Boaroli


2 Answers

In fact, we don't have multidimensional arrays. But it's so easy defining a temp-table that would do the same work I don't even miss it. Simple arrays are defined using the EXTENT option when defining your variable.

like image 129
bupereira Avatar answered Feb 01 '23 04:02

bupereira


Progress does not have native support for multi-dimensional arrays.

like image 29
Tim Kuehn Avatar answered Feb 01 '23 06:02

Tim Kuehn