view oracle_schema.patch @ 480:e60d9192bfaa

preserve exception on connections
author Catherine Devlin <catherine.devlin@gmail.com>
date Wed, 19 May 2010 15:13:44 -0400
parents 0b71da565ebe
children
line wrap: on
line source

171c171,174
<             schema[table_key] = Table(table_name, cursor, owner)
---
>             try:
>                 schema[table_key] = Table(table_name, cursor, owner)
>             except Exception, e:
>                 LOG.warning('Failed to get metadata for table %s.%s: %s' % (owner, table_name, str(e)))