Exemplo n.º 1
0
 internal CdlRow(CdlTable table, ICdlRecord original, CdlRowState initialState, TableInfo structure)
 {
     m_table     = table;
     m_fields    = new FieldRec[m_table.Structure.Columns.Count];
     m_original  = original;
     m_structure = structure;
     RowState    = initialState;
 }
Exemplo n.º 2
0
 internal CdlRow(CdlTable table, ICdlRecord original, CdlRowState initialState, TableInfo structure)
 {
     m_table = table;
     m_fields = new FieldRec[m_table.Structure.Columns.Count];
     m_original = original;
     m_structure = structure;
     RowState = initialState;
 }
Exemplo n.º 3
0
 public BadCdlRowStateError(string errcode, CdlRowState expected, CdlRowState found)
     : base(errcode + " Bad CDL row state, expected:" + expected.ToString() + "; found:" + found.ToString())
 {
 }
Exemplo n.º 4
0
 public BadCdlRowStateError(string errcode, CdlRowState expected, CdlRowState found)
     : base(errcode + " Bad CDL row state, expected:" + expected.ToString() + "; found:" + found.ToString())
 {
 }