码迷,mamicode.com
首页 > Web开发 > 详细

1 .net 用事物提交执行存储过程

时间:2017-09-14 18:51:17      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:action   for   create   open   ret   procedure   and   cti   logs   

 public static void delModelReturn(string performanceId,DateTime? effectiveDate=null)
        {

            using (SqlConnection con = GetEditorConnection())
            {
                con.Open();
                using (SqlCommand command = con.CreateCommand())
                {
                    SqlTransaction st = con.BeginTransaction();
                    command.Transaction = st;
                    try
                    {
                        command.CommandText = "delModelReturn";
                        command.CommandType = CommandType.StoredProcedure;
                        command.Parameters.Add(new SqlParameter("@p_PerformanceId", performanceId));
                        if (!effectiveDate.HasValue)
                        {
                            command.Parameters.Add(new SqlParameter("@p_EffectiveDate", DBNull.Value));
                        }
                        else
                        {
                            command.Parameters.Add(new SqlParameter("@p_EffectiveDate",effectiveDate));
                        }
                        command.ExecuteNonQuery();
                        st.Commit();
                    }
                    catch (Exception ex)
                    {
                        st.Rollback();
                        throw new Exception(ex.Message);
                    }


                }
                con.Close();

            }
        }

 

1 .net 用事物提交执行存储过程

标签:action   for   create   open   ret   procedure   and   cti   logs   

原文地址:http://www.cnblogs.com/mibing/p/7521573.html

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