我应该调用什么函数来更新 SQLite 数据库中的值?

发布于 2024-12-01 23:07:06 字数 593 浏览 1 评论 0原文

我想更新 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 技术交流群。

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

发布评论

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

评论(1

莫相离 2024-12-08 23:07:06

这里是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.

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