OdbcDataReader.GetInt16(Int32) Método
Definição
Obtém o valor da coluna especificada como um inteiro com sinal de 16 bits.Gets the value of the specified column as a 16-bit signed integer.
public:
override short GetInt16(int i);
public:
virtual short GetInt16(int i);
public override short GetInt16 (int i);
public short GetInt16 (int i);
override this.GetInt16 : int -> int16
abstract member GetInt16 : int -> int16
override this.GetInt16 : int -> int16
Public Overrides Function GetInt16 (i As Integer) As Short
Public Function GetInt16 (i As Integer) As Short
Parâmetros
- i
- Int32
O ordinal da coluna baseado em zero.The zero-based column ordinal.
Retornos
O valor da coluna especificada como um inteiro com sinal de 16 bits.The value of the specified column as a 16-bit signed integer.
Implementações
Exceções
A conversão especificada não é válida.The specified cast is not valid.
Comentários
As conversões são executadas com base nos recursos subjacentes do driver ODBC.Conversions are performed based on the underlying capabilities of the ODBC driver. Se não houver suporte para a conversão, a chamada do método falhará.If the conversion is not supported, the method call fails.
Chame IsDBNull para procurar valores nulos antes de chamar este método.Call IsDBNull to look for null values before calling this method.