自动化监控记录
程序员文章站
2022-07-12 18:15:23
...
回放结果入库
创建数据库对象
pip install sqlite3
class DB:
def __init__(self):
self.conn = sqlite3.connect(config.db)
# 析构方法
def __del__(self):
self.conn.close()
def insert(self,sql):
cursor = self.conn.cursor()
cursor.execute(sql)
self.conn.commit()
def select(self,sql):
cursor = self.conn.cursor()
cursor.execute(sql)
return cursor.fetchall()
写入数据库
db = DB()
tag = time.strftime('%Y%m%d%H%M%S',time.localtime(monitor_start))
for case in result:
db.insert(f"insert into infos (a
上一篇: window的特性