ClientDataSet1 cannot perform this operation on a closed dataset.错误

ClientDataSet1 cannot perform this operation on a closed dataset.错误

程序出现“ClientDataSet1 cannot perform this operation on a closed dataset.”错误,经半天的查找,发现是DBCheckbox问题。因为使用了三层结构,想在DBCheckbox出现变动时,就可以直接上传数据,代码如下:

  if DBGridEh1.DataSource.DataSet.RecordCount=0 then exit;
  ID:=DBGridEh1.DataSource.DataSet.FieldByName('ID').AsString;
  SQL:='Update 老人基本信息 set ';
  if DBCheckbox1_1.Checked
    then SQl:=SQL+'护理1=''True'''
    else SQl:=SQL+'护理1=''False''';
  SQl:=SQL+' where ID='+#39+ID+#39;
  if not DataModule1.SocketConnection1.AppServer.MyQuery(SQL,sErr)
    then MessageBox(self.handle,pchar('更新数据出错:   '+sErr),'错误',MB_OK+MB_ICONERROR);

就出现错误,刷新ClientDataSet1数据时,第一次出错,第二次能够刷新。

删除这段代码,程序正常。有罪有待研究。

 

 

 

 

你可能感兴趣的:(编程技巧,DataSnap,数据库)