コード例 #1
0
        /// <summary>
        /// 新增多筆通路門市贈品
        /// </summary>
        public void CreateStoreGifts(DataTable dt, DbTransaction RootDBT)
        {
            bool IsRootTranscation = false;

            try
            {
                DBO.MKT_StoreGiftDBO dbo = new MKT_StoreGiftDBO(ref USEDB);

                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT == null) ? true : false;


                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                ArrayList ALD = new ArrayList();
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    ALD.Clear();

                    ALD.Add(dt.Rows[i]["ITEM"].ToString());
                    ALD.Add(dt.Rows[i]["PERIOD"].ToString());
                    ALD.Add(dt.Rows[i]["CHAN_NO"].ToString());
                    ALD.Add(dt.Rows[i]["STORE"].ToString());
                    ALD.Add(dt.Rows[i]["VIRTUAL_CODE"].ToString());
                    ALD.Add(dt.Rows[i]["UPDATEUID"].ToString());
                    if (QueryExistPk(ALD).Rows.Count > 0) throw new Exception("新增失敗,通路「" + dt.Rows[i]["CHAN_NO"].ToString() + "」、門市代號「" + dt.Rows[i]["STORE"].ToString() + "」資料已存在");
                    dbo.doCreate(ALD, DBT);
                }

                #region 交易成功

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                }

                #endregion
            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation,關閉連線
                    if (Conn.State == ConnectionState.Connecting)
                    {
                        Conn.Close();
                    }
                }

                #endregion

            }
        }
コード例 #2
0
        /// <summary>
        /// 基本表單新增BCO
        /// </summary>
        /// <param name="ParameterList">輸入變數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        /// <returns>回傳影響筆數</returns>
        public int CreateStoreGift(ArrayList ParameterList,
                                      DbTransaction RootDBT
                                      )
        {
            int PID = 0;
            bool IsRootTranscation = false;

            try
            {
                DBO.MKT_StoreGiftDBO dbo = new MKT_StoreGiftDBO(ref USEDB);

                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT == null) ? true : false;


                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                PID = dbo.doCreate(ParameterList, DBT);

                #region 交易成功

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                }

                #endregion

                return PID;
            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation,關閉連線
                    if (Conn.State == ConnectionState.Connecting)
                    {
                        Conn.Close();
                    }
                }

                #endregion

            }
        }