Browse Source

SQLite

pull/9/head
Jure Šorn 6 years ago
parent
commit
9257434c48
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -767,7 +767,7 @@ db = sqlite3.connect(<filename>)
```python ```python
cursor = db.execute(<query>) cursor = db.execute(<query>)
if cursor: if cursor:
cursor.fetchall() # Or cursor.fetchone()
<list> = cursor.fetchall() # Or cursor.fetchone()
db.close() db.close()
``` ```

Loading…
Cancel
Save