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 93f8dee commit 69a3275Copy full SHA for 69a3275
README.md
@@ -1111,15 +1111,15 @@ db.close()
1111
1112
### Read
1113
```python
1114
-cursor = db.execute(<query>)
+cursor = db.execute('<query>')
1115
if cursor:
1116
<tuple> = cursor.fetchone() # First row.
1117
<list> = cursor.fetchall() # Remaining rows.
1118
```
1119
1120
### Write
1121
1122
-db.execute(<query>)
+db.execute('<query>')
1123
db.commit()
1124
1125
0 commit comments