Edgewall Software

Changes between Version 47 and Version 48 of PySqlite


Ignore:
Timestamp:
Dec 14, 2009, 11:49:42 AM (14 years ago)
Author:
Christian Boos
Comment:

#DownloadingSQLite separately is not really necessary anymore

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v47 v48  
    2525[http://www.sqlite.org/download.html SQLite download] page.
    2626
     27But you don't need to download it by yourself,
     28if you install the pysqlite bindings from a package, it
     29will usually come with the SQLite code bundled.
     30
     31If you build the pysqlite bindings by yourself, you also
     32have the possibility to use the `build_static` mode, which
     33will download the latest "amalgamation" code of SQLite and
     34build it together with the extension code.
     35
     36
    2737==== Building SQLite yourself ====
     38
     39If you really insist in being in full control...
     40
    2841'''Note:''' If you want to use Trac in a multi-threaded setup
    2942by using either TracModPython or TracStandalone, be sure to build a
    3043'''thread-safe version of SQLite''', by using the `--enable-threadsafe`
    3144configuration switch.
     45
    3246If you use a non thread-safe library, which is unfortunately what you
    3347get by default on non-windows platforms, you face the risk to get
     
    3650=== The Pysqlite2 bindings ===
    3751
    38 The latest stable version available at pysqlite.googlecode.com as of this writing is '''2.5.5''', and it works fine with Trac.
     52The latest stable version available at pysqlite.googlecode.com as of this writing is '''2.5.6''', and it works fine with Trac.
    3953
    4054{{{
     
    7993==== Building pysqlite ====
    8094
    81 The recommended way to build the SQLite bindings is to do a "static build",
     95The recommended way to build the SQLite bindings is to do a `static_build`,
    8296which will download the latest sqlite3 amalgamation file, build and link it inside
    8397the pysqlite module: