在分布式应用程序中使用事务

一般的数据库事务控制要求事务里所做的操作必须在同一个数据库内,这样在出现错误的时候才能回滚(RllBack)到初始状态。这就存在一个问题,在分布式应用程序中,我们往往需要同时操作多个数据库,使用数据库本身的事务处理,很难满足程序对事务控制的要求。在COM+中,提供了完整的事务服务,我们可以利用它来完成在分布式应用程序中的事务控制。

  具体过程如下

  一:用VS.NET生成一个类库 。

  二:添加对System.EnterpristServices的引用,具体步骤

  菜单:(项目-添加引用-在.NET选项卡选择System.EnterpristServices-确定)

  三:构建类

  1:源程序

using System;
using System.EnterpriseServices;
using System.Data.SqlClient;
using System.Reflection;

namespace COMPlusSamples
{
//表明需要事务支持
[ Transaction(TransactionOption.Required) ]
//声明为服务器应用程序,还可以选择Library,表示为库应用程序
[assembly: ApplicationActivation(ActivationOption.Server)]
//描述信息
[assembly: Description("sample")]

public class TxCfgClass : ServicedComponent
{
private static string init1 = "user id=sa;password=;initial catalog=pubs;data source=(local)";

private static string init2 = "user id=sa;password=;initial catalog=NorthWind;data source=(local)";

private static string add1 = "insert into authors('au_lname','au_fname') values('test1', 'test2')";

private static string add2 = "insert into sample values('test1',22)";
//the error sql statement
//there is not table “sample”

public TxCfgClass() {}

private void ExecSQL(string init, string sql)
{
SqlConnection conn = new SqlConnection(init);
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = sql;
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}

//添加一条记录到数据库
public void Add()
{
try
{
//在一数据库中插入一条记录

ExecSQL(init1, add1);
Console.WriteLine("the operation in the same database completely");

//在另外一个数据库中插入两条记录
//这次执行的是一个错误的SQL语句

ExecSQL(init2, add2);
Console.WriteLine("the operation in the other database
completely");

Console.WriteLine("Record(s) added, press enter...");
Console.Read();

}
catch(Exception e)
{
//事务回滚
ContextUtil.SetAbort();
Console.WriteLine("Because there are some errors in the operation ,so transcation abort");
Console.WriteLine("The error is " + e.Message);
Console.WriteLine("abort successfully");
Console.Read();
}
}
}
}

转自:http://community.csdn.net/Expert/topic/4454/4454750.xml?temp=.1130335

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值