Home | History | Annotate | Download | only in sqlite3

Lines Matching refs:cur

4 cur = con.cursor()
9 cur.execute("select ?", (AUSTRIA,))
10 row = cur.fetchone()
15 cur.execute("select ?", (AUSTRIA,))
16 row = cur.fetchone()
26 cur.execute("select ?", ("this is latin1 and would normally create errors" +
28 row = cur.fetchone()
34 cur.execute("select ?", (AUSTRIA,))
35 row = cur.fetchone()
38 cur.execute("select ?", ("Germany",))
39 row = cur.fetchone()