Browse Source

Pathlib

pull/27/head
Jure Šorn 6 years ago
parent
commit
69a3275a4b
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -1111,7 +1111,7 @@ db.close()
### Read
```python
cursor = db.execute(<query>)
cursor = db.execute('<query>')
if cursor:
<tuple> = cursor.fetchone() # First row.
<list> = cursor.fetchall() # Remaining rows.
@ -1119,7 +1119,7 @@ if cursor:
### Write
```python
db.execute(<query>)
db.execute('<query>')
db.commit()
```

Loading…
Cancel
Save