-
Mika Koistinen replied to the topic case insensitive Lookup field in delphi in the forum kbmMemTable 1 month, 3 weeks ago
Actually solution was more simple than I tought.
TCaseInsentiviveKbmMemtable = class (TkbmMemTable)
[Read more]
function Lookup(const KeyFields: string; const KeyValues: Variant; const ResultFields: string): Variant; overload; override;
end;
...
function TCaseInsentiviveKbmMemtable.Lookup(const KeyFields: string; const KeyValues: Variant;
const… -
Mika Koistinen replied to the topic case insensitive Lookup field in delphi in the forum kbmMemTable 1 month, 3 weeks ago
Thanks For this.
Actually at that point primary customer using that updated data to match case. But now we got two more cases.
My code is like this
[Read more]
fProdLookup := tKbmMemTable.create(self);
q.sql.Text := 'select number,name from products';
q.UniDirectional := true;
q.open;
fProdlookup.LoadFromDataSet(q,…