Click or drag to resize

BCSTableUpdateValues Method (String, 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(
	string matchColumn,
	Object matchValue,
	string setColumn,
	Object setValue
)

Parameters

matchColumn
Type: SystemString
The column name of which to search the value for a match.
matchValue
Type: SystemObject
The field value to match.
setColumn
Type: SystemString
The column name to update.
setValue
Type: SystemObject
The column value.
Remarks
Executes a query like: UPDATE TableName SET setColumn = 'setValue' [ WHERE (MatchColumns = MatchValues[ AND ...])]
See Also