SqlCeDataReader.GetSqlInt64 Method

Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

Gets the value of the specified column as a SqlInt64.

  [Visual Basic]
  Public Function GetSqlInt64( _
   ByVal 
  ordinal
   As Integer _
) As SqlInt64
[C#]
public SqlInt64 GetSqlInt64(int ordinal
);
[C++]
public: SqlInt64 GetSqlInt64(int ordinal
);
[JScript]
public function GetSqlInt64(
   ordinal : int) : SqlInt64;

Parameters

  • ordinal
    The zero-based column ordinal.

Return Value

A SqlInt64.

Exceptions

Exception Type Condition
InvalidOperationException The operation is not valid. The SqlCeDataReader may be positioned after the last row in the result set.

Remarks

No conversions are performed; therefore, the data retrieved must already be a 64-bit signed integer or an exception is generated.

Requirements

Platforms: .NET Compact Framework

.NET Framework Security:

See Also

SqlCeDataReader Class | SqlCeDataReader Members | System.Data.SqlServerCe Namespace

Syntax based on .NET Framework version 1.1.
Documentation version 1.1.1.

Send comments on this topic.

© Microsoft Corporation. All rights reserved.