我无法摆脱日记文件。始终回滚我的数据库。我甚至在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();
}