Example #1
0
 /// <summary>
 /// 查詢VDS_MKT_UN_TAG_STORE資料
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <returns></returns>
 public DataTable QUERY_UN_TAG_STORE(ArrayList ParameterList)
 {
     #region
     try
     {
         DBO.VDS_MKT21_DBO dbo = new VDS_MKT21_DBO(ref USEDB);
         return dbo.doQUERY_UN_TAG_STORE(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     #endregion
 }
Example #2
0
        /// <summary>
        /// 刪除一筆VDS_MKT_UN_TAG_STORE資料
        /// </summary>
        /// <param name="ParameterList"></param>
        /// <param name="RootDBT"></param>
        public void DEL_UN_TAG_STORE(ArrayList ParameterList, DbTransaction RootDBT)
        {
            #region
            bool IsRootTranscation = false;

            DBO.VDS_MKT21_DBO dbo = new VDS_MKT21_DBO(ref USEDB);

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

                #region 啟動交易或指定RootTranscation

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

                #endregion

                dbo.doDEL_UN_TAG_STORE(ParameterList, 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.State == ConnectionState.Open))
                    {
                        Conn.Close();
                    }
                }

                #endregion
            }
            #endregion
        }