提交和回滚更改 (.NET)
使用事务时,您可以决定何时将对对象的更改保存到图形数据库中。您可以使用该方法保存对事务中打开的对象所做的更改。如果程序遇到错误,可以使用该方法回滚在事务中所做的任何更改。CommitAbort 如果在调用之前未调用,则回滚事务中所做的所有更改。无论是 还是被调用,都需要调用以发出交易结束的信号。如果事务对象是用语句启动的,则不必调用 。CommitDisposeCommitAbortDisposeUsingDispose VB.NET'' Commit the changes made within the transaction <transaction>.Commit() '' Abort the transaction and rollback to the previous state <transaction>.Abort() C#// Commit the changes made within the transaction <transaction>.Commit(); // Abort the transaction and rollback to the previous state <transaction>.Abort(); 相关概念父主题: |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2024-12-15 11:40
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.