SQLiteConnectionInsert Method (Object, String) |
Inserts the given object and retrieves its
auto incremented primary key if it has one.
Namespace:
SQLite
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public int Insert(
Object obj,
string extra
)
Parameters
- obj
- Type: SystemObject
The object to insert.
- extra
- Type: SystemString
Literal SQL code that gets placed into the command. INSERT {extra} INTO ...
Return Value
Type:
Int32
The number of rows added to the table.
See Also