Working With Transactions
abort transaction [NAME];
commit transaction;
print transaction;
start transaction [read];
set transaction wait|nowait|savepoint [NAME];
Working With Threads
MQL has a notion of a “thread,” which is a means by which you can run multiple MQL sessions inside a single process. Each thread is like a separate MQL session, except that all threads run within the same MQL process. This concept was introduced into MQL to support the MSM idea of multiple “deferred commit” windows.
start thread;
resume thread 1;
print thread;
kill thread 2;
本文深入探讨了MQL中事务和线程的概念,包括如何使用aborttransaction、committransaction、printtransaction等命令来操作事务,以及如何通过startthread、resumethread、killthread等方法来管理线程。
73

被折叠的 条评论
为什么被折叠?



