Subject | Re: [IBO] large lookup table problem |
---|---|
Author | IB Objects |
Post date | 2003-06-28T16:40:22Z |
> large lookup table problemSetup OrderingItems and OrderingLinks on the table and in the OrderingLinks
>
> I have a TIB_lookupcombo setup. during the insert or edit mode when
> the TIB_lookupcombo is being used I feel like it is very slow since
> the Lookup table is very large ... Any suggestion or guidelines to
> improve its performance?
put an entry as follows:
MYCOL=ITEM=1;POS=0
You can expirement with different values for POS.
e.g. If you have a range of integers that are all 6 digits then you would
set POS to 6 so that it wouldn't attempt a search until you entered the 6th
digit.
If you have a lot of names, like over 200,000 then you may not want
incremental searching to start until you get to the 4th or 5th character so
you can put a different amount for POS there.
Jason Wharton