1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

boulder-oracle-sprint: Fixed DATA_TYPES_REVERSE to use cx_Oracle type

objects as keys.  Introspection works much better now.


git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Boulder Sprinters
2007-03-29 21:33:36 +00:00
parent 9649bfd4f9
commit 61c3c5bc7f
2 changed files with 11 additions and 15 deletions

View File

@@ -883,7 +883,7 @@ def inspectdb():
except NotImplementedError:
indexes = {}
for i, row in enumerate(introspection_module.get_table_description(cursor, table_name)):
att_name = row[0]
att_name = row[0].lower()
comment_notes = [] # Holds Field notes, to be displayed in a Python comment.
extra_params = {} # Holds Field parameters such as 'db_column'.