Hi,

I have exactly the same schema in Postgresql, MySQL and Oracle.

I am reflecting the tables in my application using: self.meta.reflect
(bind=self.engine, schema='schem')

This works perfectly for MySQL and Postgresql but for Oracle I get no
tables reflected and cannot understand why. I can however run this
kind of query and get results with Oracle:

        outp = text('select l_name from schem.person',
bind=self.engine).execute()

        for i in outp:
            print i[0]

Can anyone either suggest what my problem might be or perhaps even
suggest a further test I can do to determine the problem.

Thanks a lot
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to