We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a375389 commit 3e16c1aCopy full SHA for 3e16c1a
README.md
@@ -46,6 +46,8 @@ import sqlite3
46
print(db.execute("select sqlite_version()").fetchall()) # sqlite version
47
db = sqlite3.connect("your_datebase.db")
48
db.execute("select name from sqlite_master where type='table'").fetchall() # tables
49
+for row in db.execute("SELECT * FROM any_table LIMIT 10"): print(row) # rows
50
+
51
52
```
53
0 commit comments