c# 执行事务函数代码_asp.net教程-查字典教程网
c# 执行事务函数代码
c# 执行事务函数代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下://////执行多条sql语句,实现事务//////多条sql语句publicintExecutrSqlTran(Syst...

复制代码 代码如下:

/// <summary>

/// 执行多条sql语句,实现事务

/// </summary>

/// <param name="arraySql">多条sql语句</param>

public int ExecutrSqlTran(System.Collections.ArrayList arraySql)

{

int itemnum;

DbOpen();

SqlCommand cm = new SqlCommand();

cm.Connection = scn;

SqlTransaction tx = scn.BeginTransaction();

cm.Transaction = tx;

try

{

for (int i = 0; i < arraySql.Count; i++)

{

string strSql = arraySql[i].ToString();

if (strSql.Trim().Length > 1)

{

cm.CommandText = strSql;

cm.ExecuteNonQuery();

}

}

tx.Commit();

itemnum = 1;

}

catch (SqlException E)

{

tx.Rollback();

itemnum = 0;

throw new Exception(E.Message);

}

DbClose();

return itemnum;

}

}

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