Re: upgrading pysqlite in python2.5
Gerhard Häring <[email protected]>, @itsystementwicklung.de
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <0ae85d54d25073faad41ef664674d0bd@localhost> |
On Thu, 30 Aug 2007 15:48:30 +0000, [email protected] wrote: > Now that pysqlite is included within the python 2.5 release, what is the > recommended procedure for upgrading? The python release notes say it uses > pysqlite2.1.3 -- that seems quite old. Install the upstream release and use the pysqlite2.dbapi2 module instead of the sqlite3 one. You could try to import both, check versions and use the newest one. How? There's a version_info tuple in each module. -- Gerhard