SqlDataReader.FieldCount 属性

定义

获取当前行中的列数。

public:
 virtual property int FieldCount { int get(); };
public:
 property int FieldCount { int get(); };
public override int FieldCount { get; }
public int FieldCount { get; }
member this.FieldCount : int
Public Overrides ReadOnly Property FieldCount As Integer
Public ReadOnly Property FieldCount As Integer

属性值

如果未放在有效的记录集中,则为 0;否则为当前行中的列数。 默认值为 -1。

实现

例外

没有对 SQL Server 实例的当前连接。

注解

执行不返回行 (的查询(如 DELETE 查询) )设置为 FieldCount 0。 但是, 这不应与返回 0 行的查询混淆 (例如 SELECT * FROM table WHERE 1 = 2) 在这种情况下 FieldCount 返回表中的列数,包括隐藏字段。 使用 VisibleFieldCount 可排除隐藏的字段。

适用于

另请参阅