cpython/Doc/includes/sqlite3/shortcut_methods.py

25 lines
598 B
Python
Raw Normal View History

2007-08-15 11:28:22 -03:00
import sqlite3
langs = [
("C++", 1985),
("Objective-C", 1984),
]
2007-08-15 11:28:22 -03:00
con = sqlite3.connect(":memory:")
# Create the table
con.execute("create table lang(name, first_appeared)")
2007-08-15 11:28:22 -03:00
# Fill the table
con.executemany("insert into lang(name, first_appeared) values (?, ?)", langs)
2007-08-15 11:28:22 -03:00
# Print the table contents
for row in con.execute("select name, first_appeared from lang"):
2007-08-15 11:28:22 -03:00
print(row)
print("I just deleted", con.execute("delete from lang").rowcount, "rows")
# close is not a shortcut method and it's not called automatically,
# so the connection object should be closed manually
con.close()