我是靠谱客的博主 细心冬天,最近开发中收集的这篇文章主要介绍执行多条SQL语句,事务处理,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  /// <summary>
  /// 执行多条SQL语句,事务处理
  /// </summary>
  /// <param name="strSQL">以";"相隔的查询语句</param>
  public bool InsertMoreDB(string strSQL){
   char[] de={';'};
   string strChildSQL;
   int i;
   string[] strSQLArr=strSQL.Split(de);
   bool IsControll=true;

   SqlConnection conn=DBCreateCN();
   SqlCommand myCommand=new SqlCommand();
   SqlTransaction myTrans;
   myTrans=conn.BeginTransaction();

   myCommand.Connection = conn;
   myCommand.Transaction = myTrans;

   try
   {
    for(i=0;i<strSQLArr.Length;i++)
    {
     strChildSQL=strSQLArr[i];
     myCommand.CommandText =strChildSQL;
     myCommand.ExecuteNonQuery();
    }
    myTrans.Commit();
    IsControll=true;
   }
   catch(Exception)
   {
    try
    {
     IsControll=false;
     myTrans.Rollback();

    }
    catch (SqlException)
    {
     // Handle possible exception here
    }
   }
   finally
   {
    conn.Close();
   }
   return IsControll;
  }

转载于:https://www.cnblogs.com/JimZhang/archive/2005/08/31/226603.html

最后

以上就是细心冬天为你收集整理的执行多条SQL语句,事务处理的全部内容,希望文章能够帮你解决执行多条SQL语句,事务处理所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部