我应该调用什么函数来更新 SQLite 数据库中的值?
我想更新 SQLite 数据库中特定行的特定列中的值。我应该进行什么类型的 SQLite 调用?我可以使用 rawQuery() 来执行此操作,还是应该使用 update() 方法。这些电话会是什么?
我现在的情况是这样的:
ContentValues values = new ContentValues();
values.put("c_uploaded", "true");
String where = new String("WHERE c_created_at = ?");
String[] created = new String[] {"Tuesday"};
db.update("TABLE", values, where , created);
所以我想将 c_uploaded 列更新为 true,其中 c_created 列是 tuesday< /strong>
这有意义吗?或者有更好的方法吗?
感谢您的帮助。
I want to update a value in a specific column in a specific row in my SQLite database. What type of SQLite call should I make? Can I use rawQuery() to do this or should I use the update() method. What would the call be for these?
The one I have right now is this:
ContentValues values = new ContentValues();
values.put("c_uploaded", "true");
String where = new String("WHERE c_created_at = ?");
String[] created = new String[] {"Tuesday"};
db.update("TABLE", values, where , created);
So I want to update the c_uploaded column to true where the c_created column is tuesday
Does this make sense or is there a better what to do this?
Appreciate the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里是SQLiteDatabase的文档,这里是一个关于如何使用它的很好的教程。
至于您应该使用哪种方法的答案,取决于您。如果您有一个简单的更新,那么 .rawQuery() 可能是最简单的。如果有很多值,那么 .update() 可能会更容易。
Here is the documentation for SQLiteDatabase, and here is a good tutorial on how to use it.
As far as the answer to which method you should use, its up to you. If you have a simple update then .rawQuery() may be easiest. If there are a lot of values, then .update() would probably be easier.