[sqlite] Issue with v3.11

2016-02-24 Thread Miroslav Rajcic
Hi Richard, that was really fast! Indeed, I was using the SQLITE_OMIT_BLOB_LITERAL flag. Removing the flag solved the issue. Thank you guys for a quick solution. Regards, Miroslav On 24.2.2016. 17:20, Richard Hipp wrote: > On 2/24/16, Richard Hipp wrote: >> What compile-time options are yo

[sqlite] Issue with v3.11

2016-02-24 Thread Miroslav Rajcic
Hello, I have a program using sqlite for document storage. Sqlite layer has been quite stable until I replaced v3.10.2 with 3.11. Relevant parts of the program are: //at app startup static void SqliteErrorLogCallback(void *pArg, int iErrCode, const char *zMsg) { printf("Sqlite error (code:

[sqlite] Issue with v3.11

2016-02-24 Thread Richard Hipp
On 2/24/16, Richard Hipp wrote: > > What compile-time options are you using? > Dan deduced that you must be using -DSQLITE_OMIT_BLOB_LITERAL. That (unsupported) compile-time option does indeed induce the error you are seeing. A fix has been checked in (https://www.sqlite.org/src/info/b65217c69c

[sqlite] Issue with v3.11

2016-02-24 Thread Richard Hipp
On 2/24/16, Miroslav Rajcic wrote: > Hello, > I have a program using sqlite for document storage. Sqlite layer has > been quite stable until I replaced v3.10.2 with 3.11. > > Error: > Sqlite error (code: 1, txt: SQL logic error or missing database): > unrecognized token: "x" > > > Breaking with de