Ticket #11033: oracle_cx_unicode.diff
File oracle_cx_unicode.diff, 606 bytes (added by , 16 years ago) |
---|
-
django/db/backends/oracle/introspection.py
21 21 except AttributeError: 22 22 pass 23 23 24 try: 25 data_types_reverse[cx_Oracle.UNICODE] = 'CharField' 26 except AttributeError: 27 pass 28 24 29 def get_table_list(self, cursor): 25 30 "Returns a list of table names in the current database." 26 31 cursor.execute("SELECT TABLE_NAME FROM USER_TABLES")