From eed41724f4a75bfb36efe259b3de523fab2bf284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 1 Feb 2020 03:27:51 +0100 Subject: [PATCH] Grammar fixes --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ec73e79..220e32c 100644 --- a/README.md +++ b/README.md @@ -1820,7 +1820,7 @@ def write_to_csv_file(filename, rows): SQLite ------ -**Server-less database engine that stores each database into separate file.** +**Server-less database engine that stores each database into a separate file.** ### Connect **Opens a connection to the database file. Creates a new file if path doesn't exist.** diff --git a/index.html b/index.html index 20c5766..d504607 100644 --- a/index.html +++ b/index.html @@ -1628,7 +1628,7 @@ CompletedProcess(args=['bc', #SQLite

Server-less database engine that stores each database into separate file.

Connect

Opens a connection to the database file. Creates a new file if path doesn't exist.

import sqlite3
+

#SQLite

Server-less database engine that stores each database into a separate file.

Connect

Opens a connection to the database file. Creates a new file if path doesn't exist.

import sqlite3
 db = sqlite3.connect('<path>')                  # Also ':memory:'.
 ...
 db.close()