Re: Setting Django to not quote table names

2013-03-05 Thread Steven Githens
Hi Shawn! Thanks for the clue. I commented out the following in oracle/base.py DatabaseOperations.quote_name and can get some tables showing up in the admin view now. ( More issues of course, but I believe them to be separate. ) # if not name.startswith('"') and not name.endswith('"')

Setting Django to not quote table names

2013-03-05 Thread Steven Githens
Hello Django Users, I have an app that uses Oracle and cx_Oracle for the db, and I've made the models from an existing schema with inspectdb. The database schema also contains a number of sub-schemas, so they must be accessed with schema dot table name. Looking at the SQL used for model acces