CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2018 开发者帮助

提交和回滚更改 (.NET)

2024-5-18 16:57| 发布者: admin| 查看: 84| 评论: 0|原作者: admin|来自: AutoCAD

提交和回滚更改 (.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();

路过

雷人

握手

鲜花

鸡蛋

最新评论

QQ|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1   苏公网安备32011402011833)

GMT+8, 2024-12-15 11:40

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部