We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c33e5 commit 4641486Copy full SHA for 4641486
README.md
@@ -62,8 +62,8 @@ import kite_sql
62
db = kite_sql.Database.in_memory()
63
db.execute("create table demo(id int primary key, v int)")
64
db.execute("insert into demo values (1, 2), (2, 4)")
65
-rows = db.run("select * from demo").rows()
66
-print([row["values"] for row in rows])
+for row in db.run("select * from demo"):
+ print(row["values"])
67
```
68
69
## Examples
0 commit comments