public DataTable QuerySwitch(QueryType QT, ArrayList ParameterList)
        {
            DBO.VDS_CGD36M_DBO CodeFileM = new VDS_CGD36M_DBO(ref USEDB);
            DataTable Dt;

            try
            {
                switch (QT)
                {                   
                    case QueryType.CODE:
                        Dt = CodeFileM.doQueryByCode(ParameterList);
                        break;
                    case QueryType.ID:
                        Dt = CodeFileM.doQueryByID(ParameterList);
                        break;
                    default:
                        Dt = new DataTable();
                        break;
                }

                return Dt;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 public DataTable QueryRow(ArrayList ParameterList, bool likeSearch)
 {
     try
     {
         DBO.VDS_CGD36M_DBO code_main = new VDS_CGD36M_DBO(ref USEDB);
         if (likeSearch)
         {
             ParameterList[0] = "%" + ParameterList[0] + "%"; //code
             ParameterList[1] = "%" + ParameterList[1] + "%"; //name
             ParameterList[2] = "%" + ParameterList[2] + "%"; //main_explain                  
             ParameterList[3] = "%" + ParameterList[3] + "%"; //scode
             ParameterList[4] = "%" + ParameterList[4] + "%"; //explain
             ParameterList[5] = ParameterList[5]; //enable
             ParameterList[6] = ParameterList[6]; //rownum
         }
         return code_main.QueryRow(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }            
        /// <summary>
        /// 基本表單新增BCO
        /// </summary>
        /// <param name="ParameterList">輸入變數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        /// <returns>回傳影響筆數</returns>
        public int CreateCodeFile(ArrayList ParameterList,
                                      DbTransaction RootDBT
                                      )
        {
            int PID = 0;
            bool IsRootTranscation = false;

            try
            {
                DBO.VDS_CGD36M_DBO CodeFileM = new VDS_CGD36M_DBO(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 = CodeFileM.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

            }
        }