DataTableReader.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 ordinal);
public override short GetInt16 (int ordinal);
override this.GetInt16 : int -> int16
Public Overrides Function GetInt16 (ordinal As Integer) As Short
Parâmetros
- ordinal
- Int32
O ordinal da coluna baseado em zeroThe zero-based column ordinal
Retornos
O valor da coluna especificada.The value of the specified column.
Exceções
O índice passado estava fora do intervalo de 0 a FieldCount -1.The index passed was outside the range of 0 to FieldCount - 1.
Foi feita uma tentativa de recuperar dados de uma linha excluída.An attempt was made to retrieve data from a deleted row.
Foi feita uma tentativa de ler ou acessar uma coluna em um DataTableReader fechado.An attempt was made to read or access a column in a closed DataTableReader.
A coluna especificada não contém um inteiro com sinal de 16 bits.The specified column does not contain a 16-bit signed integer.
Exemplos
O exemplo a seguir exibe o conteúdo da coluna numerada 2 dentro do passado DataTableReader .The following example displays the contents of the column numbered 2 within the passed-in DataTableReader. Se o valor que a coluna em uma linha específica for nula, o código exibirá o texto <NULL> .If the value the column within a particular row is null, the code displays the text <NULL>. Se os dados dentro da coluna não forem do tipo correto, o exemplo exibirá uma mensagem de erro para cada linha.If the data within the column is not of the correct type, the example displays an error message for each row.
private static void PrintColumn(DataTableReader reader)
{
// Loop through all the rows in the DataTableReader
while (reader.Read())
{
if (reader.IsDBNull(2))
{
Console.Write("<NULL>");
}
else
{
try
{
Console.Write(reader.GetInt16(2));
}
catch (InvalidCastException)
{
Console.Write("Invalid data type.");
}
}
Console.WriteLine();
}
}
Private Sub PrintColumn(ByVal reader As DataTableReader)
' Loop through all the rows in the DataTableReader
While reader.Read()
If reader.IsDBNull(2) Then
Console.Write("<NULL>")
Else
Try
Console.Write(reader.GetInt16(2))
Catch ex As InvalidCastException
Console.Write("Invalid data type.")
End Try
End If
Console.WriteLine()
End While
End Sub
Comentários
Nenhuma conversões é executada; Portanto, os dados recuperados já devem ser um Int16 ou padrão coercitivo para um Int16 .No conversions are performed; therefore, the data retrieved must already be an Int16 or coercible to an Int16.
Chame IsDBNull para ver se há valores nulos antes de chamar este método.Call IsDBNull to see if there are null values before calling this method.