Delphi 中这三个控件正对InterBase数据库的增删改查怎么做 只要属性设置就行 知道的说下 谢谢。
比如查询 要设置。。 哪些属性。。

解决方案 »

  1.   

    没人回答。。 
    这个问题的解决方式
    绑定好以后 
      DM.heruTransaction.Active := False;
      if not DM.OperatorQuery.Active then DM.OperatorQuery.Active := True;
      if not DM.heruTransaction.InTransaction then DM.heruTransaction.StartTransaction;
      DM.IBUpdateSQL1.DeleteSQL.Text := 'delete from info where num='+QuotedStr(edtNum.Text);
      DM.IBUpdateSQL1.ExecSQL(DB.ukDelete);
      DM.heruTransaction.Commit;
      Application.MessageBox('删除员工记录成功','操作提示',mb_ok);代码最直接