码迷,mamicode.com
首页 > 数据库 > 详细

SQL事务

时间:2015-02-13 01:45:24      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:sql 事务

1 , 在介绍Sql Server 的事务之前 , 我想先谈谈.net中利用System.Data.SqlClient里面的相关类 , 实现事务.春节福利啊技术分享

         public void ProTranandler()
        {
            using (SqlConnection conn = new SqlConnection(this.CONN_LINK))
            {
                conn.Open();
                SqlTransaction tran = conn.BeginTransaction();
                SqlCommand scd = new SqlCommand();
                scd.Connection = conn;
                //--------------------------------------------------------------
                //--------------调用"存储过程"
                //scd.CommandText = "ProSql";
                //scd.CommandType = CommandType.StoredProcedure;
                //SqlParameter sqtIN = new SqlParameter("@inParam", SqlDbType.Int);
                //sqtIN.Direction = ParameterDirection.Input;
                //sqtIN.Value = 1;
                //SqlParameter sqtOUT = new SqlParameter("@ok", SqlDbType.Int);
                //sqtOUT.Direction = ParameterDirection.Output;
                //scd.Parameters.Add(sqtIN);
                //scd.Parameters.Add(sqtOUT);
                try
                {
                    scd.Transaction = tran;
                    scd.CommandText = "SQL1";
                    scd.ExecuteNonQuery();
                    scd.CommandText = "SQL2";
                    scd.ExecuteNonQuery();
                    tran.Commit();
                }
                catch (Exception e)
                {
                    tran.Rollback();
                    Console.WriteLine(e.Message);
                }
                finally
                {
                    scd.Dispose();
                    conn.Close();
                }
            }
        }

注意 : SQL1 和SQL2要么都执行 , 要么都不执行.但只不是最好的方案 , 我喜欢用SQL的事务,优点是不需要编译,执行速度快 , 代码集成重用性高.

 create proc ProTest
@InParam int ,
@InParamStr varChar(50),
@OutParam int output
as
 begin tran
  declare @error int
  set @error = 0
  --SQL1
  set @error = @@ERROR + @error
  --SQL2
  set @error = @@ERROR + @error
  if @error > 0 
  begin
   set @OutParam = 0
   rollback tran
  end
   
  else
  begin
   set @OutParam = 1
   commit tran
  end

 

上面的注释代码 , 解释了如何调用

本文出自 “Better_Power_Wisdom” 博客,请务必保留此出处http://aonaufly.blog.51cto.com/3554853/1614155

SQL事务

标签:sql 事务

原文地址:http://aonaufly.blog.51cto.com/3554853/1614155

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!