Edgewall Software

Changes between Version 36 and Version 37 of PySqlite


Ignore:
Timestamp:
Feb 7, 2009, 11:06:26 PM (15 years ago)
Author:
techtonik <techtonik@…>
Comment:

finding out pysqlite and sqlite versions

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v36 v37  
    116116Troubleshooting is greatly helped by knowing exactly what versions are used for {{{sqlite}}} inside your Python interpreter. Especially on *nix systems, a number of different versions might exist - and the actual versions linked and used might not be what you think.
    117117
    118 To test what your Python installation uses, try this inside an interpreter:
     118To test the version of PySqlite what your Python installation uses and the version of SQLite linked, try this inside an interpreter:
     119{{{
     120>>> import sqlite
     121>>> sqlite.version
     122'1.0.1'
     123>>> sqlite._sqlite.sqlite_version()
     124'2.8.16'
     125}}}
     126
     127To ensure that this is the exact version Trac uses - you may try this:
     128
    119129{{{
    120130#!python