aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Doc/includes/sqlite3/parse_colnames.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/includes/sqlite3/parse_colnames.py')
-rw-r--r--Doc/includes/sqlite3/parse_colnames.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/includes/sqlite3/parse_colnames.py b/Doc/includes/sqlite3/parse_colnames.py
index cc68c76459e..5f01dbfe1cb 100644
--- a/Doc/includes/sqlite3/parse_colnames.py
+++ b/Doc/includes/sqlite3/parse_colnames.py
@@ -6,3 +6,5 @@ cur = con.cursor()
cur.execute('select ? as "x [timestamp]"', (datetime.datetime.now(),))
dt = cur.fetchone()[0]
print(dt, type(dt))
+
+con.close()