add insertions to ComandHistory table as well
This commit is contained in:
parent
4dc232f259
commit
665a76561e
@ -104,6 +104,10 @@ def insert_qb(history, dest):
|
|||||||
cursor.executemany(
|
cursor.executemany(
|
||||||
'INSERT INTO History (url,title,atime) VALUES (?,?,?)', history
|
'INSERT INTO History (url,title,atime) VALUES (?,?,?)', history
|
||||||
)
|
)
|
||||||
|
cursor.executemany(
|
||||||
|
'INSERT INTO CompletionHistory (url,title,last_atime) VALUES (?,?,?)',
|
||||||
|
history
|
||||||
|
)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user