gpt4 book ai didi

android - 无论在哪里调用 cursor.moveToFirst() ,它都会给出超出的游标配额将杀死它

转载 作者:太空狗 更新时间:2023-10-29 15:00:58 27 4
gpt4 key购买 nike

无论在何处使用 cursor.moveToFirst(),它都会抛出以下错误,这仅发生在

小米手机

Caused by: java.lang.IllegalStateException: Process 29459 exceeded cursor quota 308, will kill it

然后他们崩溃了。我尝试了关闭游标、限制游标返回的行数等选项。没有任何帮助。

最佳答案

确保你已经像这样关闭了游标

Cursor cursor = //yourstatement;
try {
if (cursor.moveToFirst()){
}
}
} finally {
cursor.close();
}

关于android - 无论在哪里调用 cursor.moveToFirst() ,它都会给出超出的游标配额将杀死它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26863468/

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