MCPcopy Create free account
hub / github.com/CL-lau/SQL-GPT / update_table_list

Method update_table_list

front/DatabaseManagerGUI.py:48–52  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

46 self.root.mainloop()
47
48 def update_table_list(self):
49 self.table_listbox.delete(0, tk.END)
50 tables = self.db_manager.get_table_list(self.db_combo.get())
51 for table in tables:
52 self.table_listbox.insert(tk.END, table)
53
54 def update_column_list(self):
55 self.column_listbox.delete(0, tk.END)

Callers

nothing calls this directly

Calls 2

get_table_listMethod · 0.80
getMethod · 0.80

Tested by

no test coverage detected