I realize this may be a novice question, but I cannot figure this out.
I create a very simple MI table.
Create Table Test (LineNum Integer) File "D:\temp\TestFile.tab"
Later, I do an Insert Into to update the line number. I also try to put an CreatePoint object in.
Insert Into Test (LineNum, Obj) Values (1, CreatePoint(122.04753, -47,23765))
But it does not work and gives me an error: "Field Obj does not exist in table Test. "
But how do I create a column/object in a file? There is no "object" type when you create a table. So how do I get this object of a Point into my table?