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:
Unvired.Kernel.SQLite
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic int Update(
Object obj
)
Public Function Update (
obj As Object
) As Integer
public:
int Update(
Object^ obj
)
member Update :
obj : Object -> int
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