Home | History | Annotate | Download | only in sqlite3

Lines Matching refs:row

10 row = cur.fetchone()
11 assert row[0] == AUSTRIA
16 row = cur.fetchone()
17 assert type(row[0]) is str
20 assert row[0] == AUSTRIA.encode("utf-8")
28 row = cur.fetchone()
29 assert type(row[0]) is unicode
35 row = cur.fetchone()
36 assert type(row[0]) is unicode
39 row = cur.fetchone()
40 assert type(row[0]) is str