I have Table1 with 2 fields (one of which is a Memo field) and Table2 with two character fields.
I do a simple query joining Table1 and Table2: the first time I run the query I get an empty cursor, while the second time I get the right cursor with results.
Select t1.Id, t1.Desc, t2.Name1, t2.Name2 ;from Table1 t1, Table2 t2 ; where t1.Id=t2.Id ; and not DELETED() ; into cursorQuery
I have found if I run the following before to run the query then I get the right cursor just the first time:
SELECT Table1
GO BOTTOM
GO TOP
Please, what is wrong?
Thank you very much