Example #1
0
 public RowSet(Dictionary <int, string> schema)
 {
     if (null != schema)
     {
         _schema = new RowSetSchema(schema);
     }
     _rows = new List <Row>();
 }
Example #2
0
 public RowSet(Dictionary<int, string> schema)
 {
     if (null != schema)
     {
         _schema = new RowSetSchema(schema);
     }
     _rows = new List<Row>();
 }
Example #3
0
 public Row(RowSetSchema schema, object[] values)
 {
     _schema = schema;
     _values = values;
 }
Example #4
0
 public Row(RowSetSchema schema) : this(schema, new object[schema.ColumnCount])
 {
 }