import sqlite3

conn = sqlite3.connect('tempory.db')
c = conn.cursor()

Views = 0

c.execute('select * from Links')
for row in c:
    url = row[1]
    print url
    c.execute("UPDATE Links SET Views=? WHERE url=?", (Views, url))
    conn.commit()

c.close()