Gateway to web application
import sqlite3 conn = sqlite3.connect('mydb.db') cursor = conn.cursor() cursor.execute("DROP TABLE EMPLOYEE") print("Table dropped... ") conn.commit() conn.close()