Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTableReader::GetInt64 Method (Int32)

 

Gets the value of the specified column as a 64-bit signed integer.

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

public:
virtual long long GetInt64(
	int ordinal
) override

Parameters

ordinal
Type: System::Int32

The zero-based column ordinal

Return Value

Type: System::Int64

The value of the specified column.

Exception Condition
ArgumentOutOfRangeException

The index passed was outside the range of 0 to FieldCount - 1.

DeletedRowInaccessibleException

An attempt was made to retrieve data from a deleted row.

InvalidOperationException

An attempt was made to read or access a column in a closed DataTableReader .

InvalidCastException

The specified column does not contain a 64-bit signed integer value.

No conversions are performed; therefore, the data retrieved must already be an Int64 or coercible to an Int64.

Call IsDBNull to see if there are null values before calling this method.

The following example displays the contents of the column numbered 2 within the passed-in DataTableReader. If the value the column within a particular row is null, the code displays the text <NULL>. If the data within the column is not of the correct type, the example displays an error message for each row.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft