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