Changeset 9542
- Timestamp:
- 12/02/08 00:01:14 (1 month ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/releases/1.0.X/docs/ref/databases.txt
r9331 r9542 250 250 ============ 251 251 252 Versions prior to 3.3.6 253 ------------------------ 254 252 255 Versions of SQLite 3.3.5 and older `contain a bug`_ when handling ``ORDER BY`` 253 256 parameters. This can cause problems when you use the ``select`` parameter for … … 279 282 advantage of the new ``pysqlite2``/SQLite versions. 280 283 284 Version 3.6.2 285 -------------- 286 287 SQLite version 3.6.2 (released August 30, 2008) introduced a bug into ``SELECT 288 DISTINCT`` handling that is triggered by, amongst other things, Django's 289 ``DateQuerySet`` (returned by the ``dates()`` method on a queryset). 290 291 You should avoid using this version of SQLite with Django. Either upgrade to 292 3.6.3 (released September 22, 2008) or later, or downgrade to an earlier 293 version of SQLite. 294 281 295 .. _oracle-notes: 282 296
