gpt4 book ai didi

Android SQLite更新语句

转载 作者:行者123 更新时间:2023-11-30 02:40:09 30 4
gpt4 key购买 nike

我正在尝试更新一行中的单个属性。但是,我下面的代码使用“新描述”的值更新每一行。

public void editSingleLocation(String id, String new_description){
SQLiteDatabase db = this.getWritableDatabase();
ContentValues newValues = new ContentValues();
newValues.put(COLUMN_DESCRIPTION, new_description);
db.update(TABLE_LOCATIONS, newValues, KEY_ID=id, null);

我试图使用此链接中的解决方案之一 Android SQLite: Update Statement

但它似乎不起作用。

最佳答案

修复它:

问题出在“KEY_ID=id”;它需要更改为:

 db.update(TABLE_LOCATIONS, newValues, KEY_ID+"="+id, null);

关于Android SQLite更新语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25900544/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com