Hello, just trying to reproduce the crash, but it does not happen for me with the sequnce from the man page like below.
Could you probably provide some more information. Either an minimal example database and selects that triggers the crash. Or just a backtrace from an attached debugger. You find in [1] some hints on how to get such information. Kind regards, Bernhard [1] https://wiki.debian.org/HowToGetABacktrace benutzer@debian:~$ sqlcipher --version 3.8.6 2014-08-15 11:46:33 9491ba7d738528f168657adb43a198238abde19e benutzer@debian:~$ sqlcipher mydata.db SQLCipher version 3.8.6 2014-08-15 11:46:33 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> create table memos(text, priority INTEGER); sqlite> insert into memos values('deliver project description', 10); sqlite> insert into memos values('lunch with Christine', 100); sqlite> select * from memos; deliver project description|10 lunch with Christine|100 sqlite> .q benutzer@debian:~$ sqlcipher -line mydata.db 'select * from memos where priority > 20;' text = lunch with Christine priority = 100