MySQL Connector/Net
MySqlDataReaderGetUInt64 Method (Int32) |
Gets the value of the specified column as a 64-bit unsigned integer.
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9

public ulong GetUInt64( int column )
Public Function GetUInt64 ( column As Integer ) As ULong
public: unsigned long long GetUInt64( int column )
member GetUInt64 : column : int -> uint64
Parameters
- column
- Type: SystemInt32
The zero-based column ordinal or column name.
Return Value
Type: UInt64The value of the specified column.

No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value.
Call IsDBNull to check for null values before calling this method.
