Edgewall Software

Changes between Version 48 and Version 49 of PySqlite


Ignore:
Timestamp:
Dec 14, 2009, 12:02:38 PM (14 years ago)
Author:
Christian Boos
Comment:

Add a simple summary at the top, keep the details away.

Legend:

Unmodified
Added
Removed
Modified
  • PySqlite

    v48 v49  
    11= PySqlite =
    22
    3 [[PageOutline(2-4)]]
    43
    54[http://pysqlite.googlecode.com PySqlite] is a Python binding
     
    87
    98== Installation ==
     9=== The short version ===
     10
     11{{{
     12#!div style="background: #f0f0f0; padding: .5em"
     13
     14If you're using Python 2.5 and up, you already have a working version of pysqlite 2, bundled as `sqlite3`. You can stop here ;-)
     15
     16If you are using an older version of Python or you'd like to benefit from the latest and greatest version of pysqlite, grab Windows installer or the source .tar.gz from the official [http://code.google.com/p/pysqlite/downloads/list Downloads].
     17
     18If you need to build from this .tar.gz, simply do after unpacking:
     19{{{
     20python setup.py build_static install
     21}}}
     22This will fetch the latest SQLite version and bundle it within the extension.
     23
     24}}}
     25
     26[[PageOutline(2-4)]]
     27
    1028=== The SQLite library ===
    1129