Hello, I try to run sqlite4 on pretty old 32-bit Linux box, but without success.
SQLite4 version [90c09b0451], 2014-09-19 18:48:23 $ sqlite4 a.db SQLite version 4.0.0 2014-09-19 18:48:23 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> create table b (c integer); Error: locking protocol sqlite> sqlite> .dump PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; /**** ERROR: (15) locking protocol *****/ ROLLBACK; -- due to errors sqlite> $ ls a.db* a.db a.db-log a.db-shm $ uname -a Linux vm 2.6.32-5-686 #1 SMP Tue May 13 16:33:32 UTC 2014 i686 GNU/Linux $ cat /etc/issue Debian GNU/Linux 6.0 \n \l $ gcc --version gcc (Debian 4.4.5-8) 4.4.5 However, it works fine with rescent 64-bit Debian. Am I missing something? Thanks