I am using Oracle which distinguishes "theTableName" from
theTableName;

i.e. the following two statements:

 - CREATE TABLE "theTableName" (...
 - CREATE TABLE theTableName (...

generate two completely distinct tables.

If you name a schema object using a quoted identifier, then you must
use the double quotation marks whenever you refer to that object.

Reading the SQLAlchemy docs, it states that quoting table (and column)
names defaults to False, but that it can be specified by using the
'quote' table (and column) argument.

I assumed that whatever was causing the table name to be quoted could
therefore be stopped by using
'using_table_options(quote=False)' in the Entity class definition.

This does not work however.

Has anyone any ideas on where the problem is or how to fix this?

(I really don't want to create case-sensitive table names which I must
always enclose in quotes)

Thanks for any pointers,

Tim
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SQLElixir" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlelixir?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to