gpt4 book ai didi

android - 在 SQLiteDatabase.query() 中使用 String[] selectionArgs

转载 作者:IT王子 更新时间:2023-10-28 23:44:05 25 4
gpt4 key购买 nike

如何在 SQLiteDatabase.query() 中使用 String[] selectionArgs?我希望我可以将它设置为 null,因为我没有用它。我只是想将整个未排序的表从数据库加载到 Cursor 中。关于如何实现这一点的任何建议?

最佳答案

selectionArgs 替换选择字符串中的任何问号。

例如:

String[] args = { "first string", "second@string.com" };
Cursor cursor = db.query("TABLE_NAME", null, "name=? AND email=?", args, null);

至于你的问题 - 你可以使用 null

关于android - 在 SQLiteDatabase.query() 中使用 String[] selectionArgs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10507005/

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