diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-24 22:53:36 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-24 22:53:36 +0000 |
commit | 427ee509bb3e8eb4a3700eb668151aca465f121f (patch) | |
tree | 73a0128818170d4189d9592e9a6f634fde7063de | |
parent | 5c1d4dbdaee4d3459ed0dd445e1a4c4c7c3e381b (diff) | |
download | sqlalchemy-427ee509bb3e8eb4a3700eb668151aca465f121f.tar.gz |
- MySQL catches exception on "describe" and reports as NoSuchTableError
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | lib/sqlalchemy/databases/mysql.py | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -5,6 +5,7 @@ - the "delete" cascade will load in all child objects, if they were not loaded already. this can be turned off (i.e. the old behavior) by setting passive_deletes=True on a relation(). +- MySQL catches exception on "describe" and reports as NoSuchTableError 0.3.0 - General: diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py index 86b74c364..671fbaf41 100644 --- a/lib/sqlalchemy/databases/mysql.py +++ b/lib/sqlalchemy/databases/mysql.py @@ -314,7 +314,10 @@ class MySQLDialect(ansisql.ANSIDialect): if not case_sensitive: table.name = table.name.lower() table.metadata.tables[table.name]= table - c = connection.execute("describe " + table.name, {}) + try: + c = connection.execute("describe " + table.name, {}) + except: + raise exceptions.NoSuchTableError(table.name) found_table = False while True: row = c.fetchone() |