Issue1682864

classification
Title: sqlite3 package (for python2.5 compatibility)
Type: Severity: normal
Components: Library Versions: 2.5.1
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: zyasoft Nosy List: dubnerm, pjac, pjenvey, zyasoft
Priority: low Keywords: patch

Created on 2007-03-17.21:39:30 by dubnerm, last changed 2009-12-17.14:47:28 by pjac.

Files
File name Uploaded Description Edit Remove
_sqlite3.py dubnerm, 2007-03-17.21:39:30 Lib/sqlite3/_sqlite3.py
Messages
msg2691 (view) Author: Michael Dubner (dubnerm) Date: 2007-03-17.21:39:30
CPython 2.5 has new package in standard library 'sqlite3'. Here is compatibility module '_sqlite3' implementation using 'javasqlite' [http://www.ch-werner.de/javasqlite/].
msg4238 (view) Author: Jim Baker (zyasoft) Date: 2009-03-12.08:01:38
Deferred to 2.5.1
msg4943 (view) Author: Philip Jenvey (pjenvey) Date: 2009-07-25.23:26:10
The SQLiteJDBC project came out shortly after this patch was created: http://www.xerial.org/trac/Xerial/wiki/SQLiteJDBC

The javasqlite it uses can be painful to install because it requires 
compiling its JNI linkages

SQLiteJDBC however works out of the box, it includes pre-compiled shims 
for the popular platforms and falls back to the slower NestedVM 
emulation on other platforms. It also seems well maintained, however 
javasqlite looks to still be maintained too

I would love to see this module tweaked to use SQLiteJDBC instead. This 
will require some work however as its api is different from javasqlite's
History
Date User Action Args
2009-12-17 14:47:28pjacsetnosy: + pjac
2009-07-25 23:26:10pjenveysetnosy: + pjenvey
messages: + msg4943
2009-03-12 08:01:38zyasoftsetpriority: normal -> low
messages: + msg4238
versions: + 2.5.1
2008-12-15 18:43:24fwierzbickisetcomponents: + Library, - None
2008-09-14 16:51:18zyasoftsetassignee: zyasoft
nosy: + zyasoft
2007-03-17 21:39:30dubnermcreate