Subject Re: [IBO] Re: TIB_Cursor Education Needed
Author Helen Borrie
At 12:06 PM 27/05/2003 +0000, you wrote:
>Thanks to all who responded. The underlying problem ended up being
>the "AutoFetchAll" property that I had set TRUE. Doing so seems to
>eliminate the ability to manually iterate throught the records.

Quite so. As TIB_Cursor is an unbuffered dataset (except for the current
row), AutoFetchAll simply brings all of the rows across from the server,
shuffling them one-by-one through the row buffer. When finished, of
course, the cursor is at EOF, hence your procedure never went into its loop.

Helen