Python · SQLite & XML
You INSERT a row, then your program exits cleanly. Next run, the row is gone. ``` con = sqlite3.connect("w.db") cur = con.cursor() cur.execute("INSERT INTO t VALUES (1)") con.close() ``` What did you forget?
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
