Removed syborg-graphicswrapper model library
This has been moved to the adapt/graphics.simulator package - see changeset 563aa0c4cea3.
import sqlite3con = sqlite3.connect("mydb")cur = con.cursor()who = "Yeltsin"age = 72cur.execute("select name_last, age from people where name_last=:who and age=:age", {"who": who, "age": age})print cur.fetchone()