Help me to fix this problem to delete record in delphi with fdqury when this value of record is choosed by me with edit.text or dbedit.text i try like this but is not working so
fdquery.SQL.Text := 'delete * FROM MyTable column_name =:KEY1 ';
fdquery.ParamByName('KEY1').AsString = 'dbedit.text';
fdquery.Open;
thank you