D
dwj_dd
Unregistered / Unconfirmed
GUEST, unregistred user!
f_data.mast.StartTransaction;
try
query2.ExecSQL;
f_data.mast.Commit;
except
f_data.mast.Rollback;
raise;
end;
执行到 f_data.mast.Rollback;时出现错误如下:“Project p_fccs.exe raised exception class EDBEngineError with message 'No user transaction is currently in progress.ROLLBACK TRANSACTION 请求没有对应的 BEGIN TRANSACTION.',Process stopped.Use Step or Run to continue.”这是怎么回事?
另外:query.applyupdates 与query.execsql 有什么区别?
try
query2.ExecSQL;
f_data.mast.Commit;
except
f_data.mast.Rollback;
raise;
end;
执行到 f_data.mast.Rollback;时出现错误如下:“Project p_fccs.exe raised exception class EDBEngineError with message 'No user transaction is currently in progress.ROLLBACK TRANSACTION 请求没有对应的 BEGIN TRANSACTION.',Process stopped.Use Step or Run to continue.”这是怎么回事?
另外:query.applyupdates 与query.execsql 有什么区别?