IResultSet.UpdateSQLXML 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
UpdateSQLXML(Int32, ISQLXML) |
Updates the designated column with a |
UpdateSQLXML(String, ISQLXML) |
Updates the designated column with a |
UpdateSQLXML(Int32, ISQLXML)
Updates the designated column with a java.sql.SQLXML
value.
[Android.Runtime.Register("updateSQLXML", "(ILjava/sql/SQLXML;)V", "GetUpdateSQLXML_ILjava_sql_SQLXML_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateSQLXML (int columnIndex, Java.Sql.ISQLXML? xmlObject);
[<Android.Runtime.Register("updateSQLXML", "(ILjava/sql/SQLXML;)V", "GetUpdateSQLXML_ILjava_sql_SQLXML_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateSQLXML : int * Java.Sql.ISQLXML -> unit
Parameters
- columnIndex
- Int32
the first column is 1, the second 2, ...
- xmlObject
- ISQLXML
the value for the column to be updated
- Attributes
Exceptions
Remarks
Updates the designated column with a java.sql.SQLXML
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.6.
Java documentation for java.sql.ResultSet.updateSQLXML(int, java.sql.SQLXML)
.
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
UpdateSQLXML(String, ISQLXML)
Updates the designated column with a java.sql.SQLXML
value.
[Android.Runtime.Register("updateSQLXML", "(Ljava/lang/String;Ljava/sql/SQLXML;)V", "GetUpdateSQLXML_Ljava_lang_String_Ljava_sql_SQLXML_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UpdateSQLXML (string? columnLabel, Java.Sql.ISQLXML? xmlObject);
[<Android.Runtime.Register("updateSQLXML", "(Ljava/lang/String;Ljava/sql/SQLXML;)V", "GetUpdateSQLXML_Ljava_lang_String_Ljava_sql_SQLXML_Handler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UpdateSQLXML : string * Java.Sql.ISQLXML -> 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
- xmlObject
- ISQLXML
the column value
- Attributes
Exceptions
Remarks
Updates the designated column with a java.sql.SQLXML
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.6.
Java documentation for java.sql.ResultSet.updateSQLXML(java.lang.String, java.sql.SQLXML)
.
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.