You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cur.execute('CREATE TABLE tasktable(task_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL,due_date TEXT NOT NULL,priority INTEGER NOT NULL, status INTEGER NOT NULL)')
cur.execute('INSERT INTO tasktable (name,due_date,priority,status) VALUES("Setting the Database","12/07/2013",10,1)')