OleDbDataReader::FieldCount Property

 

Gets the number of columns in the current row.

Namespace:   System.Data.OleDb
Assembly:  System.Data (in System.Data.dll)

public:
property int FieldCount {
	virtual int get() override;
}

Property Value

Type: System::Int32

When not positioned in a valid recordset, 0; otherwise the number of columns in the current record. The default is -1.

Exception Condition
NotSupportedException

There is no current connection to a data source.

Includes hidden fields. Use VisibleFieldCount to exclude hidden fields.

After executing a query that does not return rows, FieldCount returns 0.

.NET Framework
Available since 1.1
Return to top
Show: