java.lang.IllegalStateException: SQLiteDatabase created and never closed

出错原因2:未关闭数据库;
解决方法2:关闭数据库。
c.close();
db.close();

你可能感兴趣的:(数据库)