Android,SQLite更新,获取空值但不是吗?

时间:2017-07-11 23:27:27

标签: android sqlite

我一直在尝试使用这个更新,但是我得到一个说法,表示值是空的:/但根据android studio他们在那里

代码:

int tempDay = tempCursor.getColumnIndex("count");
                            int tempDayTotal = tempDay + entry.getValue();
                            ContentValues cv = new ContentValues();
                            cv.put("count", Integer.toString(tempDayTotal));
                            cv.put("dayActive", Integer.toString(1));
                            GVars.dBase.conn.update("clientProduct", cv, "clientID = ? AND productID = ?", new String[]{Integer.toString(tempIDClient),Integer.toString(entry.getKey().getId())});

当我告诉android studio进入这个函数时,这就是我得到的:

Print Screen of the android studio

1 个答案:

答案 0 :(得分:0)

刚刚将count的名称更改为countDay并修复了所有