Procházet zdrojové kódy

bug fix: meta/sql.py

Steve Nyemba před 3 roky
rodič
revize
d7c9e41095
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      transport/sql.py

+ 2 - 1
transport/sql.py

@@ -101,9 +101,10 @@ class SQLRW :
             if self._engine :
                 table = _args['table'] if 'table' in _args else self.table
                 _m = sqlalchemy.MetaData(bind=self._engine)
+                _m.reflect()
                 schema = [{"name":_attr.name,"type":str(_attr.type)} for _attr in _m.tables[table].columns]
         except Exception as e:
-            e
+            pass
         return schema
     def _tablename(self,name) :