如何写
select * from customerdetails where locality = " something"
以
的形式"Select * from customerdetails where locality =?" + locality + ";";
在这种情况下,lacality
是变量
任何人都可以解决我的问题
提前致谢
答案 0 :(得分:0)
Cursor c = db.query("customerdetails", null, "locality =?", new String[]{locality}, null, null, null);
或者你可以使用像
这样的原始查询db.rawQuery("Select * from customerdetails where locality = ? ", new String[]{locality});