Get the column names and values in SQLite for Windows Runtime apps -


how column names , values in sqlite windows runtime apps (windows 8.1 apps).

in android can done following code snippet:

... cursor cursor = database.rawquery("select *  student"); string[] columnnames = cursor.getcolumnnames(); ... 

i using sqlite-net library windows project. i'm following article.


Comments