blob: b64621fc04b3ea1de7184aaf93bbb19e30be7b3e [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001import sqlite3
2
3con = sqlite3.connect("mydb")
4
5cur = con.cursor()
6
7who = "Yeltsin"
8age = 72
9
10cur.execute("select name_last, age from people where name_last=:who and age=:age",
11 locals())
12print cur.fetchone()