Hello, I am using Django's multiple database support to connect to an existing Oracle database (10g). I do not have control of the schema nor do I have any other privileges beyond SELECT. Further, the tables and views that I have access to are owned by a different user. Because of this I'm having to refer to these tables in queries using the other_user.table syntax.
This issue is that Django's Oracle backend wants to quote all table names. This does not work for the other_user.table syntax. To get this working for the moment, I have patched the quote_name method on line 192 of django/db/backends/oracle/base.py to forego the quoting. Does anyone have any suggestions of how to work around this without modifying the Django source? Thanks, Chris -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.