|
I had a similar problem. I may
have taken the long way round, but I ended up
fetching each object then testing it
using the obj_info_type & then executing any changes if
required:
Dim obj_type as smallint count =
tableinfo(table,TAB_INFO_NROWS)
for i = 1 to count
Fetch i from table
obj_type =
objectinfo(table.obj,OBJ_INFO_TYPE)
If obj_type = PLINE Then
execute changes,
or store in a temp table
End If
Next
Ta, Michelle.
|
- MI Why does this select fail... Scott Fagg
- RE: MI Why does this select fail... Michelle Smith
- RE: MI Why does this select fail... Robert Crossley
