Hello,

I'm using Django with Firebird and Oracle as backends. When integrating 
with a legacy Firebird database using the inspectdb command, I guess I 
hit a bug in inspectdb.py (although I'm not entirely sure), which does 
affect extracting foreign key relationships.

Starting in line 67:

if i in relations:
   rel_to = relations[i][1] == table_name and "'self'" or 
table2model(relations[i][1])



Shouldn't that be:

if column_name in relations:
   rel_to = relations[column_name][1] == table_name and "'self'" or 
table2model(relations[column_name][1])


?


At least with Firebird as backend, ForeignKey's get reverse engineered 
then properly.


I've also made some changes in the Firbird-django backend files for 
better support of:

* the RETURNING clause (Firebird 2.0 and higher)
* Improved introspection support


Don't know if anybody is interested in those changes.





-- 
Best Regards,
Thomas Steinmaurer
LogManager Series - Logging/Auditing Suites supporting
InterBase, Firebird, Advantage Database, MS SQL Server and
NexusDB V2
Upscene Productions
http://www.upscene.com
My blog:
http://blog.upscene.com/thomas/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to