[sqlalchemy] Re: sqlalchemy.exceptions.SQLError: (DatabaseError) ORA-00942: table or view does not exist

2009-01-04 Thread jo
Michael Bayer ha scritto: On Jan 2, 2009, at 11:51 AM, jo wrote: Seems SA checks if table already exist in all_tables system table... and creates it only if it doesn't exist. In my case... SQL select table_name from all_tables where table_name='FUNZIONE_CALCOLO', returns: TABLE_NAME

[sqlalchemy] Re: sqlalchemy.exceptions.SQLError: (DatabaseError) ORA-00942: table or view does not exist

2009-01-02 Thread jo
Seems SA checks if table already exist in all_tables system table... and creates it only if it doesn't exist. In my case... SQL select table_name from all_tables where table_name='FUNZIONE_CALCOLO', returns: TABLE_NAME -- FUNZIONE_CALCOLO SQL select table_name from

[sqlalchemy] Re: sqlalchemy.exceptions.SQLError: (DatabaseError) ORA-00942: table or view does not exist

2009-01-02 Thread Michael Bayer
On Jan 2, 2009, at 11:51 AM, jo wrote: Seems SA checks if table already exist in all_tables system table... and creates it only if it doesn't exist. In my case... SQL select table_name from all_tables where table_name='FUNZIONE_CALCOLO', returns: TABLE_NAME