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()