IResultSet.GetShort Method

Definition

Overloads

GetShort(Int32)

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

GetShort(String)

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

GetShort(Int32)

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

[Android.Runtime.Register("getShort", "(I)S", "GetGetShort_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public short GetShort (int columnIndex);
[<Android.Runtime.Register("getShort", "(I)S", "GetGetShort_IHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetShort : int -> int16

Parameters

columnIndex
Int32

the first column is 1, the second is 2, ...

Returns

the column value; if the value is SQL NULL, the value returned is 0

Attributes

Exceptions

if a database error happens.

Remarks

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

Java documentation for java.sql.ResultSet.getShort(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

GetShort(String)

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

[Android.Runtime.Register("getShort", "(Ljava/lang/String;)S", "GetGetShort_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public short GetShort (string? columnLabel);
[<Android.Runtime.Register("getShort", "(Ljava/lang/String;)S", "GetGetShort_Ljava_lang_String_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetShort : string -> int16

Parameters

columnLabel
String

the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column

Returns

the column value; if the value is SQL NULL, the value returned is 0

Attributes

Exceptions

if a database error happens.

Remarks

Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

Java documentation for java.sql.ResultSet.getShort(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to