纳闷,简单程序却老是出错,我的程序是这样的
if table1.modifyed=true then
begin
   table1.post;
   database1.starttransaction;
   try
       table1.applyupdates;
       database1.commit;
   except
       database1.rollback;
   end;
   table1.commitupdates;
end;当有记录改动时,运行到Table1.applyupdates时就出现Capability not supported错误,请各位大虾帮忙,是什么原因和怎么解决