File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 22Installing Roundup
33==================
44
5- :Version: $Revision: 1.120 $
5+ :Version: $Revision: 1.121 $
66
77.. contents::
88 :depth: 2
@@ -285,6 +285,9 @@ mysql Fast Many Needs install/admin (MySQLdb_)
285285
286286 SQLite is supported via PySQLite versions 1.1.7, 2.1.0 and sqlite3 (the last
287287 being bundled with Python 2.5+)
288+
289+ Installed SQLite should be the latest version available (3.3.8 is known
290+ to work, 3.1.3 is known to have problems).
288291**metakit**
289292 Similar performance to sqlite. If you are choosing between these two,
290293 please select sqlite.
Original file line number Diff line number Diff line change 1- # $Id: back_sqlite.py,v 1.49 2006-11-11 03:21:12 richard Exp $
1+ # $Id: back_sqlite.py,v 1.50 2006-12-19 03:01:37 richard Exp $
22'''Implements a backend for SQLite.
33
44See https://pysqlite.sourceforge.net/ for pysqlite info
2020except ImportError :
2121 try :
2222 from pysqlite2 import dbapi2 as sqlite
23+ if sqlite .version_info < (2 ,1 ,0 ):
24+ raise ValueError ('pysqlite2 minimum version is 2.1.0+ '
25+ '- %s found' % sqlite .version )
2326 sqlite_version = 2
2427 except ImportError :
2528 import sqlite3 as sqlite
You can’t perform that action at this time.
0 commit comments