gpt4 book ai didi

android - 需要算法 SQLite Android

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:08:16 25 4
gpt4 key购买 nike

从 Y 列获取所有字符串 X 并作为游标返回的算法是什么?我需要一个多次返回光标的函数,因此算法必须考虑到这一点。

我会非常感激。

更新:

public Comment search1(){
List<Comment> comments = new ArrayList<Comment>();

Cursor cursor = database.query(MySQLiteHelper.TABLE_COMMENTS,
allColumns, MySQLiteHelper.COLUMN_NAME +" LIKE" + "'%QUERY%'", null, null, null, null);

cursor.moveToFirst();
Comment newComment = new Comment();
//set values of this comment
newComment = cursorToComment(cursor);
//Close cursor
cursor.close();

return newComment;
}

忽略评论部分,这是我用于 ListView 适配器的部分。

最佳答案

假设您有一个 SQLiteDatabase对象,使用它的几个 query 方法之一返回一个 Cursor。查询将是 Y 列值的简单 SELECT

您可能会找到 SQLiteOpenHelper对于获取数据库对象很有用。请参阅指南主题 Using Databases了解更多详情。

关于android - 需要算法 SQLite Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18388321/

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