/// <summary>
 /// Resets the record to DataRecordStatus.Existing.
 /// </summary>
 public void ResetToExisting()
 {
     _recordstatus = DataRecordStatus.Existing;
 }
 public GetAll_DbVersion_Record(object[] columnvalues)
 {
     _cur__Version          = (string)columnvalues[0];
     _started_with_dbvalues = true;
     _recordstatus          = DataRecordStatus.Existing;
 }
 /// <summary>
 /// Resets the record to DataRecordStatus.Existing. Like it was freshly loaded from the database.
 /// </summary>
 public void ResetToUnmodifiedExisting()
 {
     ResetToUnmodified();
     _recordstatus = DataRecordStatus.Existing;
 }
 public GetAll_DbVersion_Record()
 {
     _cur__Version          = "";
     _started_with_dbvalues = false;
     _recordstatus          = DataRecordStatus.New;
 }