~ubuntu-branches/ubuntu/wily/sqlite3/wily

« back to all changes in this revision

Viewing changes to www/compile.html

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2012-06-13 21:43:48 UTC
  • mfrom: (0.34.1) (0.32.2) (9.1.36 sid)
  • Revision ID: package-import@ubuntu.com-20120613214348-2pg18uml05o7h2k5
Tags: 3.7.13-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
345
345
  is omitted and it is unsafe to use SQLite in a multithreaded program.
346
346
  When compiled with SQLITE_THREADSAFE=2, SQLite can be used in a multithreaded
347
347
  program so long as no two threads attempt to use the same
348
 
  <a href="c3ref/sqlite3.html">database connection</a> at the same time.</p>
 
348
  <a href="c3ref/sqlite3.html">database connection</a> (or any <a href="c3ref/stmt.html">prepared statements</a> derived from
 
349
  that database connection) at the same time.</p>
349
350
 
350
351
<p>  To put it another way, SQLITE_THREADSAFE=1 sets the default
351
352
  <a href="threadsafe.html">threading mode</a> to Serialized.  SQLITE_THREADSAFE=2 sets the default
615
616
  are disabled.  SQLite typically attempts to sync the parent
616
617
  directory when a file is deleted to ensure the directory
617
618
  entries are updated immediately on disk.
 
619
</p></blockquote><a name="disable_fts3_unicode"></a>
 
620
<p><b>SQLITE_DISABLE_FTS3_UNICODE</b></p><blockquote><p>
 
621
  If this C-preprocessor macro is defined, the <a href="fts3.html#unicode61">unicode61</a> tokenizer
 
622
  in <a href="fts3.html">FTS3</a> is omitted from the build and is unavailable to 
 
623
  applications.
618
624
</p></blockquote>
619
625
 
620
626
<a name="omitfeatures"></a>