How to delete all records in table using CoolStorage?

123 views Asked by At

I use Vici CoolStorage for work with SQLite database in my Windows Phone application. How to delete all records in table?

1

There are 1 answers

0
user1515455 On BEST ANSWER

I found my mistake. Correct query is CSDatabase.ExecuteNonQuery(@"DELETE FROM TempTable") instead of the previously used CSDatabase.ExecuteNonQuery(@"DELETE FROM TABLE TempTable")