Updates values in the table.
Namespace: BlueCieloECM.InnoCielo.Meridian.ScriptingAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
public void UpdateValues( string matchColumn, Object matchValue, string setColumn, Object setValue ) |
Visual Basic |
---|
Public Sub UpdateValues ( _ matchColumn As String, _ matchValue As Object, _ setColumn As String, _ setValue As Object _ ) |
Visual C++ |
---|
public: void UpdateValues( String^ matchColumn, Object^ matchValue, String^ setColumn, Object^ setValue ) |
Parameters
- matchColumn
- Type: System..::..String
The column name of which to search the value for a match.
- matchValue
- Type: System..::..Object
The field value to match.
- 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 ...])]