I'm having problem with an SqLite and metro8 application. How can i execute a query (Select) on the SqLite database?
Insert work fine (its just db.Insert(something)), but have no idea how to select values that where just inserted.
var db1 = new SQLite.SQLiteConnection(dbpath);
there is a method called :
db1.Execute(TableMapping map, string query, params object[] args)
But what are the tablemapping and params arguments in that method?
Thank you for any answer!