码迷,mamicode.com
首页 > 其他好文 > 详细

C# 事务处理

时间:2014-06-18 17:57:56      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   com   

       /// <summary>
        /// 发送消息;  先插入“发件箱”表;而后插入“收件箱”(批量发送选定用户)表;
        /// </summary>
        /// <param name="parms"></param>
        /// <param name="isSend"></param>
        /// <param name="messageId"></param>
        /// <param name="allId"></param>
        /// <returns></returns>
        public static int InsertMessageToOutbox(SqlParameter[] parms, bool isSend, string messageId, string allId)
        {
            int result;
            try
            {
                SqlConnection conn = new SqlConnection(SqlHelper.ConnectionStringDefault);
                conn.Open();
                SqlTransaction tran = conn.BeginTransaction();
                try
                {
                    result = SqlHelper.ExecuteNonQuery(tran, CommandType.StoredProcedure, "InsertMessageToOutbox", parms);
                    if (isSend)
                    {
                        //DataTable dt=
                        BatchAddInbox(conn, allId, messageId, tran);
                    }
                    else
                    {
                        if (result > 0)
                        {
                            result = 1000;
                        }

                    }
                    tran.Commit();
                }
                catch
                {
                    tran.Rollback();
                    throw new Exception();
                }
            }
            catch
            {
                result = 0;
            }
            return result;
        }

 

C# 事务处理,布布扣,bubuko.com

C# 事务处理

标签:style   class   blog   code   color   com   

原文地址:http://www.cnblogs.com/kedarui/p/3790919.html

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