I am after a code to get the available column names of a table in Android?
I looked around and didn't find anything.
This is a simpler way:
Cursor ti = db.rawQuery("PRAGMA table_info(mytable)", null); if ( ti.moveToFirst() ) { do { System.out.println("col: " + ti.getString(1)); } while (ti.moveToNext()); }
2.1m questions
2.1m answers
60 comments
57.0k users