Skip to content
Prev Previous commit
Next Next commit
Update Doc/library/sqlite3.rst
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
Erlend Egeberg Aasland and AlexWaygood authored Oct 31, 2021
commit 86efc853442c8a74332ebc4809af169ed1705daa
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ represents the database. Here the data will be stored in the
import sqlite3
con = sqlite3.connect('example.db')

Use the special path name ``:memory:`` to create a temporary database in RAM.
The special path name ``:memory:`` can be provided to create a temporary database in RAM.

Once a :class:`Connection` has been established, create a :class:`Cursor` object and call its :meth:`~Cursor.execute`
method to perform SQL commands::
Expand Down