Esempio n. 1
0
        public DataTable QuerySwitch(QueryType QT,
                                     ArrayList ParameterList
                                     )
        {
            DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
            DataTable Dt;

            try
            {
                switch (QT)
                {
                    case QueryType.ALL:
                        Dt = dbo.doQueryAll();
                        break;
                    case QueryType.CODE:
                        Dt = dbo.doQueryByCode(ParameterList);
                        break;
                    case QueryType.ID:
                        Dt = dbo.doQueryByID(ParameterList);
                        break;
                    case QueryType.Custom:
                        Dt = dbo.doQueryByFind(ParameterList);
                        break;
                    default:
                        Dt = new DataTable();
                        break;
                }

                return Dt;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 2
0
 public DataTable QuerySKUByCode(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
         return dbo.doQueryByCode(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 3
0
 public DataTable QuerySKUByALL()
 {
     try
     {
         DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
         return dbo.doQueryAll();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 4
0
        /// <summary>
        /// 測試SP交易失敗
        /// </summary>
        /// <param name="ParameterList">變數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        public void TestTranscation(ArrayList ParameterList1,
                                    ArrayList ParameterList2,
                                    ArrayList ParameterList3,
                                    DbTransaction RootDBT
                                    )
        {
            bool IsRootTranscation = false;

            try
            {
                DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(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

                dbo.doCreate(ParameterList1, DBT);

                dbo.doUpdate(ParameterList2, DBT);

                dbo.doDelete(ParameterList3, DBT);

                throw new Exception("交易失敗");

                #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
            }

        }
Esempio n. 5
0
 /// <summary>
 /// 檢查是否這個品號已經有期別存在
 /// </summary>
 /// <param name="ITEM"></param>
 /// <returns>筆數</returns>
 public string doQueryByITEM(string ITEM)
 {
     try
     {
         DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
         return dbo.doQueryByITEM(ITEM);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 6
0
 /// <summary>
 /// QuerySKU
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <param name="src">'0':查詢、'1':匯出</param>
 /// <returns></returns>
 public DataTable QuerySKUByFind_2(ArrayList ParameterList, char src)
 {
     try
     {
         DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
         return dbo.doQueryByFind_2(ParameterList, src);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 7
0
        public DataTable QueryByLikeForSLP(ArrayList ParameterList)
        {
            try
            {
                DBO.ITM_SKUDBO dbo = new ITM_SKUDBO(ref USEDB);
                ParameterList[0] = ParameterList[0];
                ParameterList[1] = ParameterList[1];
                if (ParameterList[2].ToString() != "")
                {
                    ParameterList[2] = ParameterList[2] + "%";
                }
                else
                {
                    ParameterList[2] = ParameterList[2];
                }
                if (ParameterList[3].ToString() != "")
                {
                    ParameterList[3] = ParameterList[3] + "%";
                }
                else
                {
                    ParameterList[3] = ParameterList[3];
                }
                ParameterList[4] = ParameterList[4];
                ParameterList[5] = ParameterList[5];
                ParameterList[6] = ParameterList[6];
                ParameterList[7] = ParameterList[7];
                ParameterList[8] = ParameterList[8];
                ParameterList[9] = ParameterList[9];
                ParameterList[10] = ParameterList[10];
                ParameterList[11] = ParameterList[11];
                ParameterList[12] = ParameterList[12];
                ParameterList[13] = ParameterList[13];
                ParameterList[14] = ParameterList[14];
                ParameterList[15] = ParameterList[15];
                ParameterList[16] = ParameterList[16];
                ParameterList[17] = ParameterList[17];
                ParameterList[18] = ParameterList[18];
                ParameterList[19] = ParameterList[19];
                ParameterList[20] = ParameterList[20];
                ParameterList[21] = ParameterList[21];
                ParameterList[22] = ParameterList[22];
                ParameterList[23] = ParameterList[23];
                ParameterList[24] = ParameterList[24];

                return dbo.doQueryByLikeForSLP(ParameterList);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }