0
如何在DBAdapter中插入查詢?這是我的SQL插入查詢。它在運行時創建字段&值。然後需要執行。Android sqlite動態插入查詢
這是我的代碼:
public void insertTableRecord(String strTableName, String strToFields, String strValues){
String Sql = "Insert into " + strTableName + "(" + strToFields + ") Values (" + strValues + ")";
DBAdapter dbAdapter = DBAdapter.getDBAdapterInstance(DownlaodTableActivity.this);
dbAdapter.openDataBase();
ContentValues initialValues = new ContentValues();
//initialValues.put("how to give", ??how to give);
long n = dbAdapter.insertRecordsInDB(strTableName, null, initialValues);
}
請告訴我如何做到這一點的一部分。
請幫助我..
在此先感謝..
克里特!!!謝謝它的工作正常 – Piraba
不客氣 – Rasel