With DataModule3.ADOQuery1 do
  begin
    Sql.Clear;
    Sql.Add('select Partment,id,name,sex,peopleid,htstart,htend from  people where Company=:Company and Partment=:Partment and Name=:Name');
    Parameters.ParamByName('Company').Value :=flatComboBox1.Text;
    Parameters.ParamByName('Partment').Value :=flatComboBox2.Text;
    Parameters.ParamByName('name').Value :='%'+flatedit1.Text+'%';
    Open;
  end;
  关于上面的语句,怎么不对呀?delphi+SQL2000
  如果用like应该怎么做呀?
  另外,SQL2000+ADO开发服务器客户端数据库,各客户端用户安装了SQL2000客户端怎么还是连不到数据库呢?还有其他的设置吗?
  急!急!急!