From 69a3275a4b0a6914302a2067945fe31569261f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 22 Feb 2019 19:32:59 +0100 Subject: [PATCH] Pathlib --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb8edb1..b056fbc 100644 --- a/README.md +++ b/README.md @@ -1111,7 +1111,7 @@ db.close() ### Read ```python -cursor = db.execute() +cursor = db.execute('') if cursor: = cursor.fetchone() # First row. = cursor.fetchall() # Remaining rows. @@ -1119,7 +1119,7 @@ if cursor: ### Write ```python -db.execute() +db.execute('') db.commit() ```