这是我使用 SQLite 的 android 应用程序的代码:
String wordInQuotes = "\"" + inputWord + "\"";
String query = "select * from table where col = " +wordInQuotes + ";";
Cursor cursor = database.rawQuery(query, null);
这没有给我任何结果。而如果我删除连接,
String query = "select * from table where col = \"apple\" ;";
它完美地工作。那么如何编写一个可以动态替换列值的查询呢?