插入
table1.edit就行了删除当前纪录table1.delete  或query1.delete 都可以啊
delete T_User where ......条件

解决方案 »

  1.   

    table.delete;一句就可以了
    如果想事物处理就用
    table.conetction.BeginTrans;
    table.conetction.CommitTrans;
    table.conetction.RollbackTranslabel换行:autosize:=false; wordwarp:=true;
    query.delete;删除当前记录
      

  2.   

    Label.Caption := 'how are you ?'+'#10#13'+'what you name?'
      

  3.   

    try
      Table1.Edit;
      Table1.Delete;
    except
      MessageBox(handle,'The record is locked by another user',
        'Information',Mb_Ok+Mb_IconInformation)
      Exit;
    end;
      

  4.   

    强烈建议用ADO的事物处理来处理数据库操作