即使成功插入数据,计数仍显示为0
MainData helper2 = new MainData(this); //Change the name to your Helper Class name
SQLiteDatabase db2 = helper2.getWritableDatabase();
int userData = 0;
Cursor data2 = helper2.getUserData();
while (data2.moveToNext()) {
userData = data2.getInt(data2.getColumnIndex("MessagesSent"));
}
ContentValues contentValues2 = new ContentValues();
contentValues2.put(KEY_ID, MessageRecieverId);
contentValues2.put(KEY_NAME, MessageRecieverName);
contentValues2.put(KEY_MESSAGES_SENT, userData+1);
long returnVariable2 = db2.update(TABLE_USER_DATA, contentValues2, null, null);
if (returnVariable2 == -1) {
Toast.makeText(getApplication(), "Nope", Toast.LENGTH_LONG).show();
//-1 means there was an error updating the values
} else {
Toast.makeText(getApplication(),"uf", Toast.LENGTH_SHORT).show();
}
它显示uf表示要插入,但是当我调用count方法时它显示0行...有人可以帮助我吗
计数
public int getProfilesCount() {
String countQuery = "SELECT * FROM " + TABLE_USER_DATA;
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.rawQuery(countQuery, null);
int count = cursor.getCount();
cursor.close();
return count;
}
活动
int profile_counts = myDBHlpr.getProfilesCount();
Log.d("BLAHHHHHHH", String.valueOf(profile_counts));
答案 0 :(得分:0)
与此
db2.update()
您没有在表中插入行,而是在更新现有行。
您必须使用
db2.insert()
插入新行。
db2.update()
返回更新的行数。
对于您来说,因为表中没有行,它会返回0
。
因此,当您将结果与-1
比较时,它会失败,并且您会看到uf
吐司。
如果没有行,则更新将返回0
。
这样做:
long returnVariable2 = db2.insert(TABLE_USER_DATA, null, contentValues2);
如果过程不成功, db2.insert()
将返回-1
。