Re: [sqlalchemy] SQLAlchemy quoting of table names - Can't redefine 'quote' or 'quote_schema' arguments

2015-06-01 Thread Adam Darwin
Nailed it, removing quote;False and setting the quoting characters to [] did the job. Huge thanks for the help, On Friday, 29 May 2015 09:43:27 UTC+10, Michael Bayer wrote: On 5/28/15 7:13 PM, Adam Darwin wrote: Thanks for the response Michael as far as I can tell

Re: [sqlalchemy] SQLAlchemy quoting of table names - Can't redefine 'quote' or 'quote_schema' arguments

2015-05-28 Thread Adam Darwin
you're expecting is that in _setup_table the table should not already exist in the dict? I've no idea why it would On Friday, 29 May 2015 00:35:56 UTC+10, Michael Bayer wrote: On 5/27/15 10:34 PM, Adam Darwin wrote: Whilst upgrading from sqlalchemy 0.8 to 1.0.4 my ORM has broken

[sqlalchemy] SQLAlchemy quoting of table names - Can't redefine 'quote' or 'quote_schema' arguments

2015-05-27 Thread Adam Darwin
Whilst upgrading from sqlalchemy 0.8 to 1.0.4 my ORM has broken with the error Can't redefine 'quote' or 'quote_schema' arguments I connect to a sybase db, and use a declarative_base Base = declarative_base() Using a standard method to create the mapping below class