-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 04/15/2011 06:28 AM, Jaromir Prinzler wrote:
> I use SQLite Amalgamation and compile it with gcc 2.95 under windows xp.

I strongly recommend you get a more recent version of the compiler.  MinGW
now has a decent automated installed and you'll get GCC 4.5.

>    SQLITE_MAX_LENGTH=1000000000                       <--- I have long
> BLOBS
>    SQLITE_MAX_SQL_LENGTH=1000000000           <--- I have long BLOBS

Those are the default values anyway.  You should only need such long SQL for
blobs if you are avoiding the sqlite3_bind_blob api.  You *really* should
use that api.

>    SQLITE_THREADSAFE=0                                        <--- I have 
> testet
> with this option. The result are the same ;-(

If you use anything other than the default SQLITE_THREADSAFE setting then
then the onus is on you to prove that you haven't messed up threading
anywhere.  (Just claiming that you don't isn't sufficient - prove it.)

> Since SQLite version 3.7.5 crash my code on

For this sort of thing by far the most productive way of finding the
problems is to get the code to run on Linux and then use valgrind.  If you
can't do that then you'll need to slog the less productive tools under Windows.

Roger
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2qA1oACgkQmOOfHg372QS7QACgup11M5auCcP/BbOfRGnvmjMW
tSkAnj9RzufhtMp42xw9MhmFb7CcsIhr
=ut7G
-----END PGP SIGNATURE-----
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to