SqlCeDataReader.GetSqlInt32 Method

Gets the value of the specified column as a SqlInt32.

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

Syntax

'Declaration
Public Overridable Function GetSqlInt32 ( _
    ordinal As Integer _
) As SqlInt32
'Usage
Dim instance As SqlCeDataReader
Dim ordinal As Integer
Dim returnValue As SqlInt32

returnValue = instance.GetSqlInt32(ordinal)
public virtual SqlInt32 GetSqlInt32(
    int ordinal
)
public:
virtual SqlInt32 GetSqlInt32(
    int ordinal
)
abstract GetSqlInt32 : 
        ordinal:int -> SqlInt32 
override GetSqlInt32 : 
        ordinal:int -> SqlInt32 
public function GetSqlInt32(
    ordinal : int
) : SqlInt32

Parameters

Return Value

Type: System.Data.SqlTypes.SqlInt32
A SqlInt32.

Exceptions

Exception 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 32-bit signed integer or an exception is generated.

See Also

Reference

SqlCeDataReader Class

System.Data.SqlServerCe Namespace