Exemplo n.º 1
0
 public ISqlValue GetValue(int column, int row)
 {
     if (column < _columnCount && row < _rowCount)
     {
         SqlRow sqlrow = GetRow(row);
         return(sqlrow.Values[column]);
     }
     else
     {
         return(new SqlValueString("NULL"));
     }
 }
Exemplo n.º 2
0
 public void AddRow(int index, ISqlValue[] row)
 {
     _rows[index] = new SqlRow(row);
 }