with datamodule.CustomerData.qrysrh do
    begin
      close;
      sql.clear;
      sql.Add('select * from customer');
      sql.Add(' where lxr=:srh');
      parambyname('srh').asstring:=srhedt.Text;
      prepare;
      open;
    end;
运行的时候错误:[Error] search.pas(43): Undeclared identifier: 'parambyname'
[Error] search.pas(43): Missing operator or semicolon
[Error] search.pas(44): Undeclared identifier: 'prepare'请问那里错了?