def run(self):
"""Runs method that performs all the real work."""
self.con = None
try:
con_info = self.con_info
self.con = db.get_con(con_info)
if not db.chck_nofa_tbls(self.con):
self._open_con_dlg(con_info)
except psycopg2.OperationalError:
self._open_con_dlg(con_info)
if not self.con:
return
self.ins_mw.prep()
self.ins_mw.show()
评论列表
文章目录