Esempio n. 1
0
 private static void UpdateDatabaseWithSnapShot(Data.ApplicationDataSet.JSTargetServerGroupsRow dataRow, string snapShotError)
 {
     try
     {
         dataRow.SnapShotDate  = DateTime.Now;
         dataRow.SnapShotError = snapShotError;
         Common.ApplicationDataSet.JSTargetServerGroupsTA.Update(Common.ApplicationDataSet.JSTargetServerGroups);
     }
     catch (Exception ex)
     {
         string errorMessage = string.Format("JSTargetServerGroupsRow.ID:{0} - ex:{1} ex.Inner:{2}", dataRow.ID, ex, ex.InnerException);
         VNC.AppLog.Error(errorMessage, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 7);
     }
 }
Esempio n. 2
0
 public static void UpdateDataSet(this MSMOA.TargetServerGroup targetServerGroup, Data.ApplicationDataSet.JSTargetServerGroupsRow dataRow)
 {
     try
     {
         //dataRow.X = targetServerGroup.X;
     }
     catch (Exception ex)
     {
         VNC.AppLog.Error(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 7);
         // TODO(crhodes):
         // Wrap anything above that throws an exception that we want to ignore,
         // e.g. property not available because of SQL Edition.
     }
 }