BCSTableUpdate Method (String, IEnumerableObject, 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 Update(
string whereFilter,
IEnumerable<Object> parameters,
string setColumn,
Object setValue
)
Public Sub Update (
whereFilter As String,
parameters As IEnumerable(Of Object),
setColumn As String,
setValue As Object
)
Parameters
- whereFilter
- Type: SystemString
The search condition for the rows to delete.
For example "(X = '1' AND Y = 3.14) OR Z = ".
- parameters
- Type: System.Collections.GenericIEnumerableObject
The collection of parameters for the query (in the same order they appear in the SQL expression).
- setColumn
- Type: SystemString
The column names to update. - setValue
- Type: SystemObject
The column value.
Remarks
Executes a query like: UPDATE TableName SET setColumn = 'SetValue'[ WHERE (whereFilter)]
See Also