Subject Re: [IBO] TIB_Cursor not returning correct result
Author Aage Johansen
sgharp wrote:
> ...
>
> Interesting that you suggest removing the qry.First. Helen told me
> to replace the qry.Open with the qry.First because, according to
> her, the Open method doesn't cause a fetch.


For a query, start with OPEN.
For a cursor, start with FIRST.


To quote Helen (in another thread):
TIB_Cursor is a dataset - unidirectional, unbuffered. It has an Open
method which you should avoid, since it is redundant. Simply call First to
start fetching rows into TIB_Cursor.


--
Aage J.