Show the import in the sqlite3 example
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index e36807c..b4d58b9 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -22,6 +22,7 @@
 represents the database.  Here the data will be stored in the
 :file:`/tmp/example` file::
 
+   import sqlite3
    conn = sqlite3.connect('/tmp/example')
 
 You can also supply the special name ``:memory:`` to create a database in RAM.