Esempio n. 1
0
 def delete_table(table_name, *args):
     """Deletes a whole table with the passed table name. *args is used only in the button widget to delete input
         inside the entry widget.
         *args: only needed to delete the gui entry_field after passing of data
     """
     sql_m = SqlManager()
     sql_m.sql_delete_table(table_name)
Esempio n. 2
0
 def tearDownTable(table_name):
     """Deletes a table with the passed name."""
     sql_m = SqlManager()
     sql_m.sql_delete_table(table_name)