summaryrefslogtreecommitdiffstats
path: root/Doc/includes/sqlite3/rowclass.py
blob: 3fa0b873890da1fd00f423d313a8aa3e213bf3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import sqlite3

con = sqlite3.connect("mydb")
con.row_factory = sqlite3.Row

cur = con.cursor()
cur.execute("select name_last, age from people")
for row in cur:
    assert row[0] == row["name_last"]
    assert row["name_last"] == row["nAmE_lAsT"]
    assert row[1] == row["age"]
    assert row[1] == row["AgE"]