I would like know what is the best method for filter in Query statement.
I dont know how filter and filtered properties are working.
What is the 2 (any more ?
1.- Way: use filter property
MyQuery->Close();
MyQuery->Filter = Key + " = " + Value;
MyQuery->Filtered = true;
MyQuery->Open();
2.- Way: Rewrite the SQL query.
MyQuery->Close();
MyQuery->SQL->Text = "SELECT * FROM mytable WHERE Key = Value";
MyQuery->Open();
Regards