BCSTableUpdate Method (String, IEnumerableObject, IEnumerableString, IEnumerableObject) |
Updates values in the table.
Namespace: BlueCieloECM.InnoCielo.Meridian.ScriptingAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax public void Update(
string whereFilter,
IEnumerable<Object> parameters,
IEnumerable<string> setColumns,
IEnumerable<Object> setValues
)
Public Sub Update (
whereFilter As String,
parameters As IEnumerable(Of Object),
setColumns As IEnumerable(Of String),
setValues As IEnumerable(Of Object)
)
public:
void Update(
String^ whereFilter,
IEnumerable<Object^>^ parameters,
IEnumerable<String^>^ setColumns,
IEnumerable<Object^>^ setValues
)
member Update :
whereFilter : string *
parameters : IEnumerable<Object> *
setColumns : IEnumerable<string> *
setValues : IEnumerable<Object> -> unit
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).
- setColumns
- Type: System.Collections.GenericIEnumerableString
The collection of column names to update.
- setValues
- Type: System.Collections.GenericIEnumerableObject
The collection of field values.
The collection size must be the same as the setColumns collection size.
Remarks
Executes a query like: UPDATE TableName SET (setColumns = 'SetValues'[,...])[ WHERE (whereFilter)]
See Also