Android Sqlite期刊

时间:2012-01-04 10:05:08

标签: android sqlite

我无法摆脱日记文件。始终回滚我的数据库。我甚至在destroy上尝试了db.close()。我怎样才能提交我的数据库?

我如何简单地使用db;

    Cursor cursor = db.rawQuery("select DISTINCT tbl_name from sqlite_master where tbl_name = '"+tableName+"'", null);
    if(cursor!=null) {
        if(cursor.getCount()>0) {
            return true;
        }
    }
    if (cursor != null && !cursor.isClosed()) {
        cursor.close();
    }

0 个答案:

没有答案