首先,我查找了几个关于此的主题,但没有专门解决 Java 中的这个问题。
我有以下方法。
public String getCount() {
SQLiteDatabase db = smokinDBOpenHelper.getWritableDatabase();
String w = "Home";
Cursor cursor = db.rawQuery("select * from " + smokinDBOpenHelper.INCIDENTS_TABLE +
" where " + KEY_LOCATION + " = 'Home'", null);
int i = cursor.getCount();
String s = ("You have " + i + " entries in this column");
return s;
}
我希望它query
使用它上面的变量而不是特定的硬编码String
“Home”。
我已经尝试过+ {w}
+ {w%}
+ w
和其他一些,似乎没有任何工作