gpt4 book ai didi

java - 为什么我在 Android 下使用 OrmLite 时会收到 DatabaseObjectNotClosedException?

转载 作者:行者123 更新时间:2023-12-02 00:24:31 25 4
gpt4 key购买 nike

使用 OrmLite 启动新的 Activity 时,出现 android.database.sqlite.DatabaseObjectNotClosedException:应用程序未关闭在此处打开的游标或数据库对象

我自己没有使用任何Cursor,所以它一定是ORMLite 使用的低级代码。不确定这里的相关代码是什么,但基本上我通常在事务管理器内使用带有 2 个 Dao 对象的 Query/DeleteBuilders。导致问题的最小示例(已删除异常处理):

return new TransactionManager(connectionSource).callInTransaction(new Callable<List<ConversionData>>() {
public List<ConversionData> call() throws Exception {
QueryBuilder<ConversionData, Date> builder = getDataDao().queryBuilder();
builder.orderBy("date", /* desc */ true);
return builder.query();
}
});

由于 Dao 和 Builders 都没有任何关闭方法,所以我不确定我到底应该在哪里关闭。

我的 Activity 中有一个扩展了 OrmLiteBaseActivity 的 close 方法,但是当我从其他 Activity 返回时如何再次打开它?

最佳答案

经过一番反复研究,发现这是一个未关闭的惰性集合上的数据迭代器的问题。 @Voo 正在做类似以下的事情:

for (ConversionRate rate : conversionRates) { 
if (rate.getCurrency().equals(curr))
// you can't do this because otherwise the iterator won't be closed
return rate;
}

这个问题偶尔会发生一次。 documentation for iterators对此是明确的。引用:

NOTE: you must page through all items for the iterator to close the underlying SQL object. If you don't go all of the way, the garbage collector will close the SQL statement some time later which is considered bad form. See the wrapped iterable below.

lazy collections 的问题还记录了:

WARNING: Most likely for(;;) loops should not be used here since we need to be careful about closing the iterator.

为了调试这个问题,我们首先使用 @ForeignCollection(eager = true) 将延迟加载的集合转变为急切的集合。这消除了问题,表明它可能是 for 循环或其他一些错误模式的不正确中断。

给其他人很好的教训。

关于java - 为什么我在 Android 下使用 OrmLite 时会收到 DatabaseObjectNotClosedException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10287485/

25 4 0
文章推荐: java - 在 Playframework 2 中将