如何在DBAdapter中插入查询?这是我的sql插入查询。它的创造领域和运行时的值。然后需要执行。
这是我的代码:
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);
}
请告诉我如何做这部分。
请帮帮我..
提前致谢..
答案 0 :(得分:1)
尝试initialValues.put(strToFields,strValue);