remove executemany and use a for each -> execute

This commit is contained in:
thezero 2018-11-05 22:57:24 +01:00
parent 2483a9434d
commit 7e10077d33

3
db.py
View File

@ -71,8 +71,9 @@ class VVVVIDatabase():
def insert_episodes(self, eps): def insert_episodes(self, eps):
con = sqlite3.connect(self.path) con = sqlite3.connect(self.path)
cur = con.cursor() cur = con.cursor()
for ep in eps:
try: try:
cur.executemany("INSERT INTO episodes (id, serie_id, season_id, type, cdn_url) VALUES (?, ?, ?, ?, ?);", eps) cur.execute("INSERT INTO episodes (id, serie_id, season_id, type, cdn_url) VALUES (?, ?, ?, ?, ?);", ep)
con.commit() con.commit()
con.close() con.close()
return True return True