Fixed an issue with unicode being mangled in Oracle when the database character set is non-unicode.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10175 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ian Kelly 2009-03-27 19:48:02 +00:00
parent 0b9a855bed
commit faf1609851
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ except ImportError:
# Oracle takes client-side character set encoding from the environment.
os.environ['NLS_LANG'] = '.UTF8'
# This prevents unicode from getting mangled by getting encoded into the
# potentially non-unicode database character set.
os.environ['ORA_NCHAR_LITERAL_REPLACE'] = 'TRUE'
try:
import cx_Oracle as Database
except ImportError, e: