diff options
author | Anthony Wang | 2023-12-29 16:16:25 -0600 |
---|---|---|
committer | Anthony Wang | 2023-12-29 16:16:25 -0600 |
commit | 97722764e82b3748a6ec60574fd3d3752048c101 (patch) | |
tree | 61b6fe63c227693ee407d146f683d375e3df6414 /test.py | |
parent | 63f04f004110ecabfb5ec32408e77055a62a9122 (diff) |
Add command for creating table in README, add fish helper scripts
Diffstat (limited to 'test.py')
-rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ import sqlite3 con = sqlite3.connect("test.db") con.execute("PRAGMA journal_mode=wal") cur = con.cursor() -cur.execute("CREATE TABLE IF NOT EXISTS cards (idx INTEGER PRIMARY KEY, weight INTEGER, key STRING, val STRING)") +cur.execute("CREATE TABLE cards (idx INTEGER PRIMARY KEY, weight INTEGER, key STRING, val STRING)") for i in range(10**8): cur.execute("INSERT INTO cards VALUES(?, ?, ?, ?)", (i, 1, i, i)) con.commit() |