如何判断Delphi5.0的ADO补丁是否已经真正安装?我依次安装了D5EntUpdate和D5ADOUpgrade,但是运行的时候总是报错,好像仍是装补丁之前的错误。都是在关闭DataSet的时候报错。测试用的代码如下:
DSTest.CommandText:='select * from test';
DSTest.Openwhile not DSTest.EOF do
begin
  DSTest.Next;
end;DSTest.Close;
运行到DSTest.Close的时候报错:
Either BOF or EOF is True, or the current record has been deleted. Request operation requires a current record.请问这是否真是补丁没有打好的缘故?可是重装好像还不行。