IResultSet.UpdateTimestamp Method
Definition
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.
Overloads
UpdateTimestamp(Int32, Timestamp) |
Updates the designated column with a |
UpdateTimestamp(String, Timestamp) |
Updates the designated column with a |
UpdateTimestamp(Int32, Timestamp)
Updates the designated column with a java.sql.Timestamp
value.
[Android.Runtime.Register("updateTimestamp", "(ILjava/sql/Timestamp;)V", "GetUpdateTimestamp_ILjava_sql_Timestamp_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateTimestamp (int columnIndex, Java.Sql.Timestamp? x);
[<Android.Runtime.Register("updateTimestamp", "(ILjava/sql/Timestamp;)V", "GetUpdateTimestamp_ILjava_sql_Timestamp_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateTimestamp : int * Java.Sql.Timestamp -> unit
Parameters
- columnIndex
- Int32
the first column is 1, the second is 2, ...
the new column value
- Attributes
Exceptions
if a database error happens.
Remarks
Updates the designated column with a java.sql.Timestamp
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.updateTimestamp(int, java.sql.Timestamp)
.
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
UpdateTimestamp(String, Timestamp)
Updates the designated column with a java.sql.Timestamp
value.
[Android.Runtime.Register("updateTimestamp", "(Ljava/lang/String;Ljava/sql/Timestamp;)V", "GetUpdateTimestamp_Ljava_lang_String_Ljava_sql_Timestamp_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateTimestamp (string? columnLabel, Java.Sql.Timestamp? x);
[<Android.Runtime.Register("updateTimestamp", "(Ljava/lang/String;Ljava/sql/Timestamp;)V", "GetUpdateTimestamp_Ljava_lang_String_Ljava_sql_Timestamp_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateTimestamp : string * Java.Sql.Timestamp -> unit
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
the new column value
- Attributes
Exceptions
if a database error happens.
Remarks
Updates the designated column with a java.sql.Timestamp
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.updateTimestamp(java.lang.String, java.sql.Timestamp)
.
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.