【发布时间】:2015-04-15 17:13:33
【问题描述】:
我正在尝试解密 SQLCipher 数据库以使用查看器应用程序对其进行查看,当我使用命令行工具执行in here 所说的操作时购买:
>sqlcipher encrypted.db
sqlite> pragma key = 'key';
sqlite> ATTACH DATABASE 'plaintext.db' AS plaintext KEY '';
sqlite> SELECT sqlcipher_export('plaintext');
我得到错误:
Error: no such collation sequence: COLLATION_NAME
而plaintext.db只有一张空表。
还有其他解密数据库的方法吗?
【问题讨论】:
标签: sqlite encryption sqlcipher