@@ -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 `.
22
22
23
23
To use the module, start by creating a :class: `Connection ` object that
@@ -332,7 +332,7 @@ Connection Objects
332
332
333
333
.. class :: Connection
334
334
335
- A SQLite database connection has the following attributes and methods:
335
+ An SQLite database connection has the following attributes and methods:
336
336
337
337
.. attribute :: isolation_level
338
338
@@ -534,7 +534,7 @@ Connection Objects
534
534
535
535
.. method :: load_extension(path)
536
536
537
- This routine loads a SQLite extension from a shared library. You have to
537
+ This routine loads an SQLite extension from a shared library. You have to
538
538
enable extension loading with :meth: `enable_load_extension ` before you can
539
539
use this routine.
540
540
@@ -605,7 +605,7 @@ Connection Objects
605
605
606
606
.. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
607
607
608
- This method makes a backup of a SQLite database even while it's being accessed
608
+ This method makes a backup of an SQLite database even while it's being accessed
609
609
by other clients, or concurrently by the same connection. The copy will be
610
610
written into the mandatory argument *target *, that must be another
611
611
:class: `Connection ` instance.
@@ -965,7 +965,7 @@ This is how SQLite types are converted to Python types by default:
965
965
+-------------+----------------------------------------------+
966
966
967
967
The type system of the :mod: `sqlite3 ` module is extensible in two ways: you can
968
- store additional Python types in a SQLite database via object adaptation, and
968
+ store additional Python types in an SQLite database via object adaptation, and
969
969
you can let the :mod: `sqlite3 ` module convert SQLite types to different Python
970
970
types via converters.
971
971
0 commit comments