diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-19 10:08:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 11:08:12 +0300 |
commit | d798acc8733b605f7fc9c3c1a85cd14ee2a56add (patch) | |
tree | f8e3e4c23811fe27989b9eade42e8a144eef25cb /Doc/includes/sqlite3/execsql_printall_1.py | |
parent | 92d1064727d6b7f4136f9c09ab52ae15e3676afe (diff) | |
download | cpython-git-d798acc8733b605f7fc9c3c1a85cd14ee2a56add.tar.gz |
bpo-44106: Purge unused sqlite3 doc includes (GH-26234)
Diffstat (limited to 'Doc/includes/sqlite3/execsql_printall_1.py')
-rw-r--r-- | Doc/includes/sqlite3/execsql_printall_1.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Doc/includes/sqlite3/execsql_printall_1.py b/Doc/includes/sqlite3/execsql_printall_1.py deleted file mode 100644 index b3b42b5567..0000000000 --- a/Doc/includes/sqlite3/execsql_printall_1.py +++ /dev/null @@ -1,15 +0,0 @@ -import sqlite3 - -# Create a connection to the database file "mydb": -con = sqlite3.connect("mydb") - -# Get a Cursor object that operates in the context of Connection con: -cur = con.cursor() - -# Execute the SELECT statement: -cur.execute("select * from lang order by first_appeared") - -# Retrieve all rows as a sequence and print that sequence: -print(cur.fetchall()) - -con.close() |