diff --git a/README.md b/README.md index 76f67cf..0c2f9fd 100644 --- a/README.md +++ b/README.md @@ -772,7 +772,8 @@ db = sqlite3.connect() ```python cursor = db.execute() if cursor: - = cursor.fetchall() # Or cursor.fetchone() + = cursor.fetchone() # First row. + = cursor.fetchall() # Remaining rows. db.close() ```