Ticket #10377: cx_oracle-note.diff

File cx_oracle-note.diff, 1.1 KB (added by James Bennett, 15 years ago)

Patch which breaks 5.0 warning out into a separate paragraph

  • docs/ref/databases.txt

     
    366366Oracle notes
    367367============
    368368
    369 Django supports `Oracle Database Server`_ versions 9i and higher. Oracle
    370 version 10g or later is required to use Django's ``regex`` and ``iregex`` query
    371 operators. You will also need a 4.X release of the `cx_Oracle`_ driver,
    372 version 4.3.1 or newer.
     369Django supports `Oracle Database Server`_ versions 9i and
     370higher. Oracle version 10g or later is required to use Django's
     371``regex`` and ``iregex`` query operators. You will also need at least
     372version 4.3.1 of the `cx_Oracle`_ Python driver.
    373373
     374Note that due to a Unicode-corruption bug in ``cx_Oracle`` 5.0, that
     375version of the driver should **not** be used with Django;
     376``cx_Oracle`` 5.0.1 resolved this issue, so if you'd like to use a
     377more recent ``cx_Oracle``, use version 5.0.1.
     378
    374379.. _`Oracle Database Server`: http://www.oracle.com/
    375380.. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
    376381
Back to Top