winfrom 在业务层实现事务控制的小例子_C#教程-查字典教程网
winfrom 在业务层实现事务控制的小例子
winfrom 在业务层实现事务控制的小例子
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:try{using(TransactionScopetr=newTransactionScope()){inti=this...

复制代码 代码如下:

try

{

using (TransactionScope tr = new TransactionScope())

{

int i = this.customermanager.addCustomer(customer);

int j = this.homestatusmanager.updateHomestatus(homestatus);

if ((i * j) > 0)

{

MessageBox.Show("记录插入成功!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);

Empty();

tr.Complete();

}

else

{

MessageBox.Show("记录插入失败!联系管理员!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);

Empty();

}

tr.Dispose();

}

}

catch(Exception err)

{

MessageBox.Show("记录插入失败" +err.ToString(), "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新C#教程学习
    热门C#教程学习
    编程开发子分类