다음을 통해 공유


SqlCeDataReader.GetInt16 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 16-bit signed integer.

Public Overridable Function GetInt16( _
   ByVal ordinal As Integer _) As Short Implements IDataRecord.GetInt16
[C#]
public virtual short GetInt16(intordinal);
[C++]
public: virtual short GetInt16(intordinal);
[JScript]
public function GetInt16(
   ordinal : int) : Int16;

Parameters

  • ordinal
    The zero-based column ordinal.

Return Value

The value of the specified column.

Implements

IDataRecord.GetInt16

Exceptions

Exception Type Condition
InvalidCastException The specified cast is not valid.
SqlNullValueException The value is null.
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 16-bit signed integer.

Call IsDBNull to check for null values before calling this method.

Requirements

Platforms: .NET Compact Framework

.NET Framework Security:

See Also

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