Edgewall Software

Changes between Version 43 and Version 44 of PySqlite


Ignore:
Timestamp:
Sep 10, 2009, 6:21:09 PM (15 years ago)
Author:
Christian Boos
Comment:

make even clearer that using SQLite v2.x is really not advised… (#8265)

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v43 v44  
    1010=== The SQLite library ===
    1111
    12 Trac 0.9 works best with '''[http://www.sqlite.org/version3.html SQLite 3.x]''',
    13 like SQLite 3.2.8, 3.3.8, etc. The latest as of this writing ('''3.5.6''') works fine.
     12Trac supports '''[http://www.sqlite.org/version3.html SQLite 3.x]''',
     13like SQLite 3.3.8, 3.5.6, etc. The latest tested as of this writing ('''3.6.12''') works fine.
    1414
    1515Pay attention to
     
    1717when upgrading the SQLite library.
    1818See below how to [wiki:PySqlite#Upgradingsqlite upgrade] your database,
    19 if needed.
    20 
    21  ''It should still be possible to use the old SQLite 2.8.x version:
    22  everything seems to work (except the search, see #2960)
    23  You should then use an equally old Pysqlite version, namely
    24  [http://pysqlite.org/download/pysqlite/releases/1.0/1.0.1 1.0.1].
    25  But doing so is ''really not recommended'', you'll get awful performances
    26  and frequent "database is locked" errors (see #7785, #3446).
    27  ''
     19if needed (SQLite v2.x is no longer supported in 0.12.x, use it at your own risks with earlier versions of Trac).
     20 
    2821
    2922==== Downloading SQLite ====