Hello, I've just tried to compile the pre-release snapshot: sqlite-amalgamation-201507141718.zip
I got following error: error C2129: static function 'void sqlite3SelectWrongNumTermsError(Parse *,Select *)' declared but not defined sqlite3.c(13553) : see declaration of 'sqlite3SelectWrongNumTermsError' It appears that the function in question has code protected by: #ifndef SQLITE_OMIT_COMPOUND_SELECT but its declaration and usage in the code are not protected by the same define. That causes the error in question when program compiles the library with SQLITE_OMIT_COMPOUND_SELECT defined. Regards, Miroslav