Edgewall Software

Changes between Version 56 and Version 57 of PySqlite


Ignore:
Timestamp:
Jun 2, 2011, 10:47:45 AM (13 years ago)
Author:
osimons
Comment:

Updated some internal variable names and using more up-to-date example versions.

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v56 v57  
    181181{{{
    182182#!python
    183 >>> import trac.db.sqlite_backend as test
    184 >>> test._ver
    185 (3, 1, 3)
    186 >>> test.have_pysqlite
     183>>> import trac.db.sqlite_backend as sql
     184>>> sql.sqlite_version
     185(3, 7, 5)
     186>>> sql.have_pysqlite
    1871872
    188 >>> test.sqlite.version
    189 '2.3.2'
    190 }}}
    191 
    192 PySqlite is version 2 (2.3.2), compiled and linked to use version SQLite 3.1.3.
     188>>> sql.sqlite.version
     189'2.6.0'
     190}}}
     191
     192PySqlite is version 2 (2.6.0), compiled and linked to use version SQLite 3.7.5.
    193193
    194194Another way to test the bindings with PySqlite 2 is to use: