2008-03-28 22:32:44 -03:00
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
con = sqlite3.connect(":memory:")
|
|
|
|
con.execute("create table person (id integer primary key, firstname varchar unique)")
|
|
|
|
|
|
|
|
# Successful, con.commit() is called automatically afterwards
|
|
|
|
with con:
|
|
|
|
con.execute("insert into person(firstname) values (?)", ("Joe",))
|
|
|
|
|
|
|
|
# con.rollback() is called after the with block finishes with an exception, the
|
2011-10-30 22:41:06 -03:00
|
|
|
# exception is still raised and must be caught
|
2008-03-28 22:32:44 -03:00
|
|
|
try:
|
|
|
|
with con:
|
|
|
|
con.execute("insert into person(firstname) values (?)", ("Joe",))
|
|
|
|
except sqlite3.IntegrityError:
|
|
|
|
print("couldn't add Joe twice")
|