[sqlalchemy] Re: Table constructor ignores quote=False when table name is mixed case

2008-04-21 Thread Michael Bayer
On Apr 21, 2008, at 11:25 AM, Jason R. Coombs wrote: I think you mean the quote kwarg. I also agree that this is misleading. I would also like to mention that I have run into a similar mixed-case problem, and if the quote= argument was used for Oracle and PostgreSQL table names, it

[sqlalchemy] Re: Table constructor ignores quote=False when table name is mixed case

2008-04-16 Thread Michael Bayer
On Apr 16, 2008, at 12:22 PM, Dr.T wrote: Oracle however becomes case sensitive when quotes are used and if a table is created with a quoted name, you must always quote references to it thereafter, which most people would not want! To sort this out, I thought that I could just pass the

[sqlalchemy] Re: Table constructor ignores quote=False when table name is mixed case

2008-04-16 Thread Dr.T
Michael, You are right and that is what I have done. I didn't appreciate that what I suggested would add overhead ;-( Perhaps a line could be added to the Table constructor documentation to point out that the name kwarg is ignored when the table name is in mixed case (because this is not