Click or drag to resize

BCSTable.UpdateValues Method (IEnumerable<String>, IEnumerable<Object>, String, Object)

Updates values in the table.

Namespace:  BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
public void UpdateValues(
	IEnumerable<string> matchColumns,
	IEnumerable<Object> matchValues,
	string setColumn,
	Object setValue
)

Parameters

matchColumns
Type: System.Collections.Generic.IEnumerable<String>
The collection of column names of which to search the values for a match.
matchValues
Type: System.Collections.Generic.IEnumerable<Object>
The collection of field values to match. The collection size must be the same as the matchColumns collection size.
setColumn
Type: System.String
The column name to update.
setValue
Type: System.Object
The column value.
Remarks
Executes a query like: UPDATE TableName SET setColumn = 'setValue' [ WHERE (MatchColumns = MatchValues[ AND ...])]
See Also