If I run sqlite3_prepare16_v2 on this statement: PRAGMA compile_optionsXXX
I get a return value of 0 and there is a non-zero statement handle. I would expect a return value of 1 and a zero statement handle. But if I run instead sqlite3_prepare16_v2 on this statement: PRAGMA compile_options XXX Then I get the expected result, so return value 1 and zero statement handle. This looks like a bug to me. RBS