Y
yzg_cumt
Unregistered / Unconfirmed
GUEST, unregistred user!
我在代码中写道
Database1.StartTransaction;
try
BatchMove1.Mode := BatCopy;
BatchMove1.Source:=Table1;
BatchMove1.Destination:=Table2;
BatchMove1.Execute;
Database1.Commit;
except
Database1.Rollback;
Raise;
end;
但是总出错,显示"Table does not exist.".如果不用事务就不会出现错误,我不知是
为什么,请各位大虾多多帮忙。请问事务是否支持batchmove。这个问题该如何解决。我
用的是两个TTable控件。
Database1.StartTransaction;
try
BatchMove1.Mode := BatCopy;
BatchMove1.Source:=Table1;
BatchMove1.Destination:=Table2;
BatchMove1.Execute;
Database1.Commit;
except
Database1.Rollback;
Raise;
end;
但是总出错,显示"Table does not exist.".如果不用事务就不会出现错误,我不知是
为什么,请各位大虾多多帮忙。请问事务是否支持batchmove。这个问题该如何解决。我
用的是两个TTable控件。