Android SQLite rawquery parameters

前端 未结 3 1633
一个人的身影
一个人的身影 2020-12-06 10:03

How can i pass intger to a rawquery in sqlite for android. Here its not taking g and s into query. Please guide.

    int g, s;

    Cursor cur3 = database2         


        
3条回答
  •  伪装坚强ぢ
    2020-12-06 10:51

    All parameter places should be designated with ?. The parameters to the query are always string nontheless, so nothing special about the integers. This should work for you:

    Cursor cur3 = database2.rawQuery("select max(UnixTimeStamp) from Quote where EmoticonID=? and SubCategoryID=?" ,new String [] {String.valueOf(g),String.valueOf(s)});
    

提交回复
热议问题