SQLiteConnectionUpdate Method (Object, Type) |
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 public int Update(
Object obj,
Type objType
)
Parameters
- obj
- Type: SystemObject
The object to update. It must have a primary key designated using the PrimaryKeyAttribute.
- objType
- Type: SystemType
The type of object to insert.
Return Value
Type:
Int32
The number of rows updated.
See Also