Forgot to say that I'm using SQLite 3.5.9 compiled from the amalgamation 
with threadsafety on.

Daniel Önnerby wrote:
> Hi all!
>
> My application is running all my SQLite stuff on one thread and 
> sometimes I run a sqlite3_interrupt from another thread to cancel the 
> current execution. Sometimes this interrupt occur in the middle of a 
> sqlite3_prepare_v2 and in some cases this will cause my application to 
> break in the SQLite code somewhere.
> Luckily I have made a SQLite C++ wrapper, so I have solved this  by 
> putting a mutex lock around all prepare and interrupt, but I'm just 
> curious if this is a known issue or if I should investigate this futher?
>
> I'm running on windows using VS2005 and from what I remember the break 
> comes when hitting the va_end inside the sqlite3SetString. From what I 
> can see, both "pz" and "ap" is NULL at this point.
>
> Please let me know if you want me to investigate this futher.
>
>
> Best regards
> Daniel
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>   
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to