/// <summary> /// 基本表單更新BCO /// </summary> /// <param name="DetailData">更新變數</param> /// <param name="RootDBT">是否有主交易,無主交易輸入null</param> /// <returns>回傳成功與否</returns> /// public bool UpdateDetail(ArrayList ParameterList, DataRow dRow, DataRow dRow_Oringinal, DbTransaction RootDBT) { bool IsRootTranscation = false; bool bResult = false; string s_Log_User = string.Empty; DateTime d_Now; try { DBO.SYS_USERPROGAUTHRELDBO dbo = new SYS_USERPROGAUTHRELDBO(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 d_Now = DateTime.Now; s_Log_User = ParameterList[1].ToString(); dbo.doUpdate(ParameterList, dRow, dRow_Oringinal, DBT, s_Log_User, d_Now); #region 交易成功 if (IsRootTranscation) { //獨立呼叫Transcation成立 DBT.Commit(); } #endregion bResult = true; 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.Close(); } } #endregion } }
/// <summary> /// 基本表單更新BCO /// </summary> /// <param name="ParameterList">更新變數</param> /// <param name="RootDBT">是否有主交易,無主交易輸入null</param> /// <returns>回傳影響筆數</returns> public int UpdateUserprogauthrel(ArrayList ParameterList, DbTransaction RootDBT ) { bool IsRootTranscation = false; 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.SYS_USERPROGAUTHRELDBO RoleProgauthrel = new SYS_USERPROGAUTHRELDBO(ref USEDB); int UpdatenRecord = RoleProgauthrel.doUpdate(ParameterList, DBT); #region 交易成功 if (IsRootTranscation) { //獨立呼叫Transcation成立 DBT.Commit(); } return UpdatenRecord; #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 } }