1、启动报错。
由于个人习惯是在application中去初始化数据库,使用加密方法之后启动直接报错,大致报错信息如下:
net.sqlcipher.database.SQLiteException: file is not a database: , while compiling: select count(*) from sqlite_master;
经过搜索,出现该问题主要是之前创建了同名的未加密数据库,再次创建就会报错,解决该问题需要删除原数据库或更改数据库名字。
1、启动报错。
由于个人习惯是在application中去初始化数据库,使用加密方法之后启动直接报错,大致报错信息如下:
net.sqlcipher.database.SQLiteException: file is not a database: , while compiling: select count(*) from sqlite_master;
经过搜索,出现该问题主要是之前创建了同名的未加密数据库,再次创建就会报错,解决该问题需要删除原数据库或更改数据库名字。