本文介绍了Android的SQLite的动态插入查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何插入在DBAdapter查询?这是我的SQL INSERT查询。它的创建领域和放大器;在运行时的值。然后需要执行。
How to insert query in the DBAdapter? This is my sql insert query. Its create fields & values at runtime. Then need to execute.
这是我的code:
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);
}
请告诉我如何做到这一点的一部分。
Please tell me how to do this part.
请帮我..
在此先感谢..
推荐答案
尝试 initialValues.put(strToFields,strValue中);
这篇关于Android的SQLite的动态插入查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!