Subject | Re: [IBO] TIB_Cursor not returning correct result |
---|---|
Author | Aage Johansen |
Post date | 2004-08-26T17:56:42Z |
sgharp wrote:
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.
> ...For a query, start with OPEN.
>
> 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 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.