Last change
on this file was 391, checked in by dmik, 11 years ago |
python: Merge vendor 2.7.6 to trunk.
|
-
Property svn:eol-style
set to
native
|
File size:
566 bytes
|
Line | |
---|
1 | import sqlite3
|
---|
2 |
|
---|
3 | con = sqlite3.connect(":memory:")
|
---|
4 | con.execute("create table person (id integer primary key, firstname varchar unique)")
|
---|
5 |
|
---|
6 | # Successful, con.commit() is called automatically afterwards
|
---|
7 | with con:
|
---|
8 | con.execute("insert into person(firstname) values (?)", ("Joe",))
|
---|
9 |
|
---|
10 | # con.rollback() is called after the with block finishes with an exception, the
|
---|
11 | # exception is still raised and must be caught
|
---|
12 | try:
|
---|
13 | with con:
|
---|
14 | con.execute("insert into person(firstname) values (?)", ("Joe",))
|
---|
15 | except sqlite3.IntegrityError:
|
---|
16 | print "couldn't add Joe twice"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.