sqlite数据库更新

发布于 2024-10-25 18:15:43 字数 660 浏览 1 评论 0原文

我目前正在尝试使用 sqlitedatabase.update 方法 此处:

继承我的代码:

public int udpateStockInfo(String stock, double qty, double purchasePrice){
    ContentValues val = new ContentValues();
    val.put(KEY_QTY, qty);
    val.put(KEY_PURCHASE_PRICE, purchasePrice);

    return db.update(DB_TABLE, val, KEY_STOCKNAME + "=?", new String[]{stock});  
}

现在我在最后一个返回行上收到错误。有人能帮我吗? IDE 表示令牌存在语法错误,结构错位。

I'm currently trying to update a row using the sqlitedatabase.update method here:

Heres the code that I have:

public int udpateStockInfo(String stock, double qty, double purchasePrice){
    ContentValues val = new ContentValues();
    val.put(KEY_QTY, qty);
    val.put(KEY_PURCHASE_PRICE, purchasePrice);

    return db.update(DB_TABLE, val, KEY_STOCKNAME + "=?", new String[]{stock});  
}

Right now I'm getting an error on the last return line. Can anyone help me with it? The IDE is saying there is a syntax error on tokens, misplaced constructs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日暮斜阳 2024-11-01 18:15:43

如上所述,必须确保它是一个新的 String[]

as noted above gotta make sure its' a new String[]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文