[sqlalchemy] Re: metadata reflecting all schemas

2008-11-30 Thread [EMAIL PROTECTED]
any sqlalchemy ways of retrieving a list of schemas? On Nov 30, 1:23 pm, Michael Bayer [EMAIL PROTECTED] wrote: On Nov 29, 2008, at 6:05 PM, [EMAIL PROTECTED] wrote: Thanks Michael If its just a warning and its supposed to continue past it, Why doesn't it finish reflecting all the

[sqlalchemy] Re: metadata reflecting all schemas

2008-11-30 Thread Michael Bayer
not currently ! you'd have to issue the correct SQL for that database. On Nov 30, 2008, at 4:18 AM, [EMAIL PROTECTED] wrote: any sqlalchemy ways of retrieving a list of schemas? On Nov 30, 1:23 pm, Michael Bayer [EMAIL PROTECTED] wrote: On Nov 29, 2008, at 6:05 PM, [EMAIL PROTECTED]

[sqlalchemy] Re: metadata reflecting all schemas

2008-11-29 Thread [EMAIL PROTECTED]
Or maybe this is my problem /home/jchesney/workspace/sqlalchemy/lib/sqlalchemy/engine/base.py: 1237: SAWarning: Did not recognize type 'name' of column 'USERNAME' self.dialect.reflecttable(conn, table, include_columns) /home/jchesney/workspace/sqlalchemy/lib/sqlalchemy/engine/base.py: 1237:

[sqlalchemy] Re: metadata reflecting all schemas

2008-11-29 Thread Michael Bayer
the type is not recognized but the reflection operation should succeed. thats why you're only getting a warning on those. On Nov 29, 2008, at 8:00 AM, [EMAIL PROTECTED] wrote: Or maybe this is my problem /home/jchesney/workspace/sqlalchemy/lib/sqlalchemy/engine/base.py: 1237:

[sqlalchemy] Re: metadata reflecting all schemas

2008-11-29 Thread [EMAIL PROTECTED]
Thanks Michael If its just a warning and its supposed to continue past it, Why doesn't it finish reflecting all the tables in all the schemas instead of a few tables in two schemas. I think it retrieved all the tables in the first schema which i specified and followed the foreign keys to

[sqlalchemy] Re: metadata reflecting all schemas

2008-11-29 Thread Michael Bayer
On Nov 29, 2008, at 6:05 PM, [EMAIL PROTECTED] wrote: Thanks Michael If its just a warning and its supposed to continue past it, Why doesn't it finish reflecting all the tables in all the schemas instead of a few tables in two schemas. that would be a different issue. But I would note