您的位置:首页 > 移动开发 > Objective-C

android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or da

2011-08-18 09:30 615 查看
这个异常的抛出并没有让程序崩溃。
    这些异常信息来源于SQLiteDatabase类的finalize方法。从异常的信息"close() was never explicitly called on database ,Application did not close the cursor or database object that was opened here

"可以知道这是由于程序中使用到的游标或SQLiteDatabase对象没有close所导致。也就是说在程序中创建的Cursor对象或者SQLiteDatabase对象,在使用完后没有关闭,而当它们都变成“垃圾"被GC时,就会打出以上的信息。

Java代码



@Override
protected void finalize() {

if (isOpen()) {
Log.e(TAG, "close() was never explicitly called on database '" +

mPath + "' ", mStackTrace);

closeClosable();
onAllReferencesReleased();
}
}

@Override
protected void finalize() {
if (isOpen()) {
Log.e(TAG, "close() was never explicitly called on database '" +
mPath + "' ", mStackTrace);
closeClosable();
onAllReferencesReleased();
}
}


    所以要想不发生这样的错误,在编码时一定要记住,当你不在使用Cursor或SQLiteDatabase对象时,将它们close(),
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐