Skip to content

Commit 69a3275

Browse files
committed
Pathlib
1 parent 93f8dee commit 69a3275

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,15 +1111,15 @@ db.close()
11111111

11121112
### Read
11131113
```python
1114-
cursor = db.execute(<query>)
1114+
cursor = db.execute('<query>')
11151115
if cursor:
11161116
<tuple> = cursor.fetchone() # First row.
11171117
<list> = cursor.fetchall() # Remaining rows.
11181118
```
11191119

11201120
### Write
11211121
```python
1122-
db.execute(<query>)
1122+
db.execute('<query>')
11231123
db.commit()
11241124
```
11251125

0 commit comments

Comments
 (0)