Something is truncating it. If you compiled Sqlite you could compile it
with some debug statements in the prepare function and figure out where
it is going wrong.
Matthew Veenstra wrote:
My SQL Statement is a standard null terminated C string (UTF-8
format). The termination is at the proper place. strlen() verifies this.
Is the string supposed to be something else than a C string?
What is really odd is that it works perfectly with the installed
3.1.3. With the same string.
Thanks,
Matt
On May 8, 2006, at 7:27 PM, John Stanton wrote:
It looks very much as if your SQL statement is being truncated when
you pass it to sqlite3_prepare. Are all your character arrays
adequately sized?
JS