Subject How to do exact search with IBO?
Author toninhonunes
Hi,

I'm using an IB_Edit with the event OnExit for make an query, for
instance:

with IB_MyQuery do
begin
Close;
ParamByName('CUSTOME_ID').AsInteger := aValue;
Open;
end;

It's work fine, but I have noted that some querys are slow excessively
mainly when there are very fields.

I need only the one search exact. Any clues?

Thanks

Toninho Nunes.