遍历ADODATASET中的数据

begin  
      ADODataSet.First;  
      Whlie   not   ADODataSet.Eof   do  
      begin  
          //   执行代码  
          ADODataSet.Next;  
      end;  
  end;
原文地址:https://www.cnblogs.com/shylock/p/1340959.html