def __init__(self):
self.logger = Logger()
self.db = sqlite3.connect('dmv_db')
self.cur = self.db.cursor()
self.cur.execute('''
CREATE table IF NOT EXISTS appointment(ts TEXT, location TEXT, appt_time TEXT);
''')
self.db.commit()
评论列表
文章目录