3
在我的Android應用程序中,當執行命令PRAGMA table_info(table_name)
後,我需要從結果中獲得name
和type
。我怎樣才能做到這一點?從PRAGMA獲取名稱和類型table_info()
在我的Android應用程序中,當執行命令PRAGMA table_info(table_name)
後,我需要從結果中獲得name
和type
。我怎樣才能做到這一點?從PRAGMA獲取名稱和類型table_info()
就這麼簡單(db
是你SQLiteDatabase
對象和tableName
應設置爲正確的表名數據庫內):
String tableName = ""; // your table name
Cursor c = db.rawQuery("PRAGMA table_info(" + tableName + ")", null);
if (c.moveToFirst()) {
do {
System.out.println("name: " + c.getString(1) + " type: " + c.getString(2));
} while (c.moveToNext());
}
c.close();