Click or drag to resize
DatabaseUpdate Method
Update data. This is a short cut method that creates an update query and then uses the
query('update')
, table, set, where and exec methods of the query.

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public Result Update(
	string table,
	Dictionary<string, Object> set,
	Dictionary<string, Object> where
)

Parameters

table
Type: SystemString
Table name to operate on
set
Type: System.Collections.GenericDictionaryString, Object
Field names and values to set
where
Type: System.Collections.GenericDictionaryString, Object
Where condition for what to update

Return Value

Type: Result
Self for chaining
See Also