示例#1
0
 /// <summary>
 /// 
 /// </summary>
 /// <returns></returns>
 public DataTable QUERY_DRIVER_NAME()
 {
     #region
     try
     {
         DBO.VDS_TRN16_DBO dbo = new VDS_TRN16_DBO(ref USEDB);
         return dbo.doQUERY_DRIVER_NAME();
     }
     catch (Exception ex)
     {
         throw ex;
     }
     #endregion
 }
示例#2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <returns></returns>
 public DataTable QUERY_TRN_DRIVER_FEE(ArrayList ParameterList)
 {
     #region
     try
     {
         DBO.VDS_TRN16_DBO dbo = new VDS_TRN16_DBO(ref USEDB);
         return dbo.doQUERY_TRN_DRIVER_FEE(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     #endregion
 }      
示例#3
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="ParameterList"></param>
        /// <param name="RootDBT"></param>
        /// <param name="i32PID"></param>
        /// <param name="str_ErrMsg"></param>
        /// <returns></returns>
        public bool ADD_TRN_DRIVER_FEE(ArrayList ParameterList, DbTransaction RootDBT, out Int32 i32ID, out string str_ErrMsg)
        {
            #region

            bool bResult = false;

            bool IsRootTranscation = false;

            try
            {
                DBO.VDS_TRN16_DBO dbo = new VDS_TRN16_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

                bResult = dbo.doADD_TRN_DRIVER_FEE(ParameterList, DBT, out i32ID, out str_ErrMsg);

                #region 交易成功

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

                #endregion

                return bResult;
            }
            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
        }
示例#4
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="ParameterList"></param>
        /// <param name="RootDBT"></param>
        public void DEL_TRN_DRIVER_FEE(ArrayList ParameterList, DbTransaction RootDBT)
        {
            #region
            bool IsRootTranscation = false;

            DBO.VDS_TRN16_DBO dbo = new VDS_TRN16_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_TRN_DRIVER_FEE(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
        }