Subject Re: [IBO] TIBOQuery AutoFetchAll prop
Author Helen Borrie
At 11:07 AM 2/04/2003 +0200, you wrote:
>Hi,
>
>I have a TIBOQuery which has some LookupFields
>to another TIBOQuery.
>I noticed in the IBOMonitor, when the AutoFetchAll
>property of the LookupDataset is False, that for every
>LookupField the Record in the LookupDataset is Fetched again.
>When I set the AutoFetchAll Property is set to True,
>i have no Fetches.....
>
>The problem is that I can't find an explanation of the
>AutoFetchAll property, so I don't know what that
>property is doing.

When you find properties in the TIBO components that don't have anything
except the (re)declaration, you should click the Hierarchy button and look
for it in the TIB_ wrapper classes.

>Can someone maybe tell me what that Property will do ?

For a scrollable dataset, if true, it causes all rows to be fed through by
the server without further control by the client. If false, IBO will fetch
"windows" of rows into the buffer as and when required. For a lookup
dataset, it's generally better to have it set True.

Helen