sqlite数据库更新
我目前正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如上所述,必须确保它是一个新的 String[]
as noted above gotta make sure its' a new String[]