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

Doug wrote:
> You may need SQLITE_THREADSAFE depending on how you're using the library

SQLITE_THREADSAFE defaults to 1 (meaning that SQLite is fully threadsafe
no matter what you do).  See

  http://www.sqlite.org/compile.html

IF for some reason you want the library to not bother with mutexes and
being threadsafe then you can use sqlite3_config with an appropriate
config option:

  http://sqlite.org/c3ref/config.html
  http://sqlite.org/c3ref/c_config_getmalloc.html

ie as long you use the defaults for compilation you will be fine and can
change them at runtime anyway.

Roger
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkpJL4UACgkQmOOfHg372QRlegCgknctHB61XIeFVFS7CK0uiLzM
VAYAniskhUHMJe0LwpTxPC2JBpf+yC06
=SmvA
-----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