Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
swdev:sqlite:custom_client_in_csharp [2018/07/12 10:51]
smayr [Insert Table Entries]
swdev:sqlite:custom_client_in_csharp [2018/07/12 10:52] (current)
smayr [Insert Table Entries]
Line 81: Line 81:
 SQLiteCommand command = new SQLiteCommand(sql, conn); SQLiteCommand command = new SQLiteCommand(sql, conn);
 command.ExecuteNonQuery(); command.ExecuteNonQuery();
-int newRecId = conn.LastInsertRowId;+Console.WriteLine("NewRecID: " + conn.LastInsertRowId);
 </code> </code>