Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
UpdateShort(Int32, Int16) |
Updates the designated column with a |
UpdateShort(String, Int16) |
Updates the designated column with a |
Updates the designated column with a short
value.
[Android.Runtime.Register("updateShort", "(IS)V", "GetUpdateShort_ISHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateShort(int columnIndex, short x);
[<Android.Runtime.Register("updateShort", "(IS)V", "GetUpdateShort_ISHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateShort : int * int16 -> unit
the first column is 1, the second is 2, ...
the new column value
if a database error happens.
Updates the designated column with a short
value. The updater methods are used to update column values in the current row or the insert row. The updater methods do not update the underlying database; instead the updateRow
or insertRow
methods are called to update the database.
Added in 1.2.
Java documentation for java.sql.ResultSet.updateShort(int, short)
.
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.
Updates the designated column with a short
value.
[Android.Runtime.Register("updateShort", "(Ljava/lang/String;S)V", "GetUpdateShort_Ljava_lang_String_SHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateShort(string? columnLabel, short x);
[<Android.Runtime.Register("updateShort", "(Ljava/lang/String;S)V", "GetUpdateShort_Ljava_lang_String_SHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateShort : string * int16 -> unit
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
the new column value
if a database error happens.
Updates the designated column with a short
value. The updater methods are used to update column values in the current row or the insert row. The updater methods do not update the underlying database; instead the updateRow
or insertRow
methods are called to update the database.
Added in 1.2.
Java documentation for java.sql.ResultSet.updateShort(java.lang.String, short)
.
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.
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in