GetSqlValues是否获得隐藏字段?

时间:2013-06-18 09:32:46

标签: c# .net sql sql-server

我想知道查询返回了多少列,以便创建该大小的数组来读取结果。

使用SqlDataReader我想做类似的事情:

object[] array = new object[rdr.FieldCount];
rdr.GetSqlValues(array);

但我不确定是否应该使用FieldCountVisibleFieldCount。 (我甚至不确定隐藏的字段是什么 。但我现在就离开了。)

1 个答案:

答案 0 :(得分:3)

这是来自GetSqlValues()

的反编译代码
public virtual int GetSqlValues(object[] values)
{
    SqlStatistics statistics = null;
    int num3;
    try
    {
        statistics = SqlStatistics.StartTimer(this.Statistics);
        this.CheckDataIsReady();
        if (values == null)
        {
            throw ADP.ArgumentNull("values");
        }
        this.SetTimeout(this._defaultTimeoutMilliseconds);
        int num2 = (values.Length < this._metaData.visibleColumns) ? values.Length : this._metaData.visibleColumns;
        for (int i = 0; i < num2; i++)
        {
            values[this._metaData.indexMap[i]] = this.GetSqlValueInternal(i);
        }
        num3 = num2;
    }
    finally
    {
        SqlStatistics.StopTimer(statistics);
    }
    return num3;
}

如您所见,可以根据visibleColumns内部值检查数组。这与VisibleFieldCount返回的值相同。

正如您所看到的,代码会检查传递的数组的长度,并复制一些可能适合传递的数组的列。因为(as from docs on VisibleFieldCount)隐藏字段附加在内部数组的末尾,如果传递FieldCount元素数组,则只检索可见字段。