@@ -17,7 +17,7 @@ SQLite for internal data storage. It's also possible to prototype an
17
17
application using SQLite and then port the code to a larger database such as
18
18
PostgreSQL or Oracle.
19
19
20
- The sqlite3 module was written by Gerhard Häring. It provides a SQL interface
20
+ The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
21
21
compliant with the DB-API 2.0 specification described by :pep: `249 `, and
22
22
requires SQLite 3.7.15 or newer.
23
23
@@ -337,7 +337,7 @@ Connection Objects
337
337
338
338
.. class :: Connection
339
339
340
- A SQLite database connection has the following attributes and methods:
340
+ An SQLite database connection has the following attributes and methods:
341
341
342
342
.. attribute :: isolation_level
343
343
@@ -544,7 +544,7 @@ Connection Objects
544
544
545
545
.. method :: load_extension(path)
546
546
547
- This routine loads a SQLite extension from a shared library. You have to
547
+ This routine loads an SQLite extension from a shared library. You have to
548
548
enable extension loading with :meth: `enable_load_extension ` before you can
549
549
use this routine.
550
550
@@ -620,7 +620,7 @@ Connection Objects
620
620
621
621
.. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
622
622
623
- This method makes a backup of a SQLite database even while it's being accessed
623
+ This method makes a backup of an SQLite database even while it's being accessed
624
624
by other clients, or concurrently by the same connection. The copy will be
625
625
written into the mandatory argument *target *, that must be another
626
626
:class: `Connection ` instance.
@@ -975,7 +975,7 @@ This is how SQLite types are converted to Python types by default:
975
975
+-------------+----------------------------------------------+
976
976
977
977
The type system of the :mod: `sqlite3 ` module is extensible in two ways: you can
978
- store additional Python types in a SQLite database via object adaptation, and
978
+ store additional Python types in an SQLite database via object adaptation, and
979
979
you can let the :mod: `sqlite3 ` module convert SQLite types to different Python
980
980
types via converters.
981
981
0 commit comments