How to get column names and its values in SQLite for windows runtime apps (Windows 8.1 apps).
In Android it can be done easily like the following code snippet:
...
Cursor cursor = database.rawQuery("select * from Student");
String[] columnNames = cursor.getColumnNames();
...
I am using Sqlite-net
library for my windows project. I'm following this article.