程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> sqlite-在SQlite查詢中使用變量

sqlite-在SQlite查詢中使用變量

編輯:編程綜合問答
在SQlite查詢中使用變量

使用了下面的方法:

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;
}

我希望這個查詢能使用變量,現在用的是特定的硬編碼字符“home”

我用過+ {w}+ {w%}+ w
但是沒實現。謝謝

最佳回答:


String value = "textForQuery"
Cursor cursor = db.rawQuery("select * from " + smokinDBOpenHelper.INCIDENTS_TABLE + " where " + KEY_LOCATION + " like '%%"+value+"%%'", null);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved