Esempio n. 1
0
        public virtual bool Fill(string fixedString)
        {
            SizeAnalysisRow newRow = (SizeAnalysisRow)this.NewRow();

            try
            {
                this.Rows.Add(newRow);
            }
            catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: SizeAnalysisTable.Fill(string) Method", e);
            }
            return(true);
        }
Esempio n. 2
0
        public bool AddSizeAnalysisRow(String Name, Int32 RowCount, Int32 DataSize, Int32 IndexSize, Int32 UnusedSize, Int32 TotalReservedSize, Double AverageDataRowSize, Double AverageIndexRowSize)
        {
            SizeAnalysisRow newRow = (SizeAnalysisRow)this.NewRow();

            try
            {
                newRow.Name                = Name;
                newRow.RowCount            = RowCount;
                newRow.DataSize            = DataSize;
                newRow.IndexSize           = IndexSize;
                newRow.UnusedSize          = UnusedSize;
                newRow.TotalReservedSize   = TotalReservedSize;
                newRow.AverageDataRowSize  = AverageDataRowSize;
                newRow.AverageIndexRowSize = AverageIndexRowSize;
                this.Rows.Add(newRow);
            }catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: SizeAnalysisTable.AddSizeAnalysisRow(String,Int32,Int32,Int32,Int32,Int32,Double,Double) Method", e);
            }
            return(true);
        }
Esempio n. 3
0
 public bool SyncRowValues(SizeAnalysisRow SourceRow)
 {
     return(SyncRowValues((DataRow)SourceRow));
 }
Esempio n. 4
0
 public void RemoveSizeAnalysisRow(SizeAnalysisRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 5
0
 public void AddSizeAnalysisRow(SizeAnalysisRow row)
 {
     this.Rows.Add(row);
 }