gpt4 book ai didi

android - 加入sqlite安卓

转载 作者:行者123 更新时间:2023-11-29 16:15:23 26 4
gpt4 key购买 nike

我的数据库中有两个表table1,table2。我有一个这样的连接查询:

select a.*,b.* from table1 a,table2 b where a.field1=b.field1;

当我在 sqlite 管理器(sqlite 浏览器)中测试它时,它工作正常。当我尝试像这样通过 Java 实现它时:

 database.execSQL("select a.*,b.* from table1 a,table2 b where a.field1=b.field1;");

它说 return type 不是 cursor。我怎样才能通过加入将它带到光标。我必须获取该数据并在 listview

中显示

最佳答案

像这样使用:

String qry = "select a.*,b.* from table1 a,table2 b where a.field1=b.field1";
Cursor cur = db.rawQuery(qry,null);

关于android - 加入sqlite安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9975399/

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