UpdateColumnsList
This property specifies the list of columns to update or insert.
Declaration
// C#
public string[] UpdateColumnsList {get; set;}Property Value
A list of columns.
Remarks
Default value is null.
The first null value (if any) terminates the list.
UpdateColumnList usage with XMLCommandType property values:
-
Insert-UpdateColumnListindicates which columns are assigned values when a new row is created. IfUpdateColumnListis null, then all columns are assigned values. If a column is on theUpdateColumnList, but no value is specified for the row in the XML file, thenNULLis used. If a column is not on theUpdateColumnList, then the default value for that column is used. -
Update-UpdateColumnListspecifies columns to modify for each row of data in the XML document. IfUpdateColumnListis null, all the values in each XML element in the XML document are used to modify the columns. -
Delete-UpdateColumnsListis ignored and can be null.