that gets me a simple text field, but what about look up components etc ?
IIRC, i'm pretty sure, that it should also depend on the database, via such a WHERE sql search-text clause...): you need an index on such a lookup text field;
==> AFAIK, you have to test:
- creating indexes on text fields have limitations with your database (with 512, 1024, 4096 (?) ANSI database-bytes-chars; of course, such a quantity of bytes corresponds to fewer characters if your database uses UTF-8)? It should be remembered that relational databases are often not designed to be "full text\memo search indexed".
- then,
if and only if the index on the lookup text field has been created, but the combo (displayed\inserted inside a TDBGrid in order to choose an ID-foreign_key) stay empty, you may have a look at the combo's style (extended, ...).