Android SQLite立即关闭时丢失数据

问题描述

我已经成功创建了一个sqlite数据库,但是在我立即调用方法insert()并关闭电源后,再次打开电源,我成功插入的数据丢失了。 为了确保数据库已成功插入,每次调用方法insert()时,我都会使用Cursor打印数据库内部的数据。他们都没有失败。但是当再次打开电源时,它们仍然不见了。

    DBHelper helper = DBHelper.getInstance(this);
    helper.insert("4",DBHelper.TABLE_MAIN);
    Cursor cursor = helper.query(DBHelper.TABLE_MAIN);
    while (cursor.movetoNext()) {
        tvMain.setText(tvMain.getText().toString() + "  " + cursor.getString(cursor.getColumnIndex(DBHelper.VALUE)));
    }
    cursor.close();

但是,如果我在断电之前延迟几秒钟,或者在调用方法insert()之后调用db.close()方法,这些数据将不会丢失

什么原因导致此问题? 我还能通过调用close()来解决此问题吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)