01-04-2023, 10:12 PM
(This post was last modified: 01-04-2023, 10:15 PM by Kernelpanic.)
Well, I can't think of a practical application right now. Maybe something for mathematicians who can store three-dimensional functions in it. It would be impractical for a "normal" database. I would take two or three records that access each other. For example:
The 3D array is a nice exercise, and I haven't found anywhere that shows a graphical representation of a 3D array.
Code: (Select All)
Type employee
firstName As String * 20
lastName As String * 20
birthday As As String * 10
EndType
Type function
programmer As employee
salary as employee
. . .
EndType
The 3D array is a nice exercise, and I haven't found anywhere that shows a graphical representation of a 3D array.