Mimer SQL Data Provider
GetSByte Method




Mimer.Data.Client Namespace > MimerDataReader Class : GetSByte Method
The zero-based column ordinal position.
Gets the value of the specified column as a signed 8-bit integer number.
Syntax
'Declaration
 
Public Function GetSByte( _
   ByVal i As Integer _
) As SByte
public sbyte GetSByte( 
   int i
)
public function GetSByte( 
    i: Integer
): ShortInt; 
public function GetSByte( 
   i : int
) : sbyte;
public: sbyte GetSByte( 
   int i
) 

Parameters

i
The zero-based column ordinal position.

Return Value

The value of the column as a System.SByte.
Exceptions
ExceptionDescription
The underlying SQL data type cannot be converted to System.Int16.
The MimerDataReader is not positioned on a row.
The column ordinal is outside the valid range.
Remarks
Supported SQL data types for the conversion are TINYINT.

Use the IsDBNull method to check for database null value before calling this method.

Requirements

.NET Framework
Version 4.6.2 or later

See Also

Reference

MimerDataReader Class
MimerDataReader Members