Click or drag to resize

SQLiteConnectionUpdate Method (Object)

Updates all of the columns of a table using the specified object except for its primary key. The object is required to have a primary key.

Namespace:  SQLite
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public int Update(
	Object obj
)

Parameters

obj
Type: SystemObject
The object to update. It must have a primary key designated using the PrimaryKeyAttribute.

Return Value

Type: Int32
The number of rows updated.
See Also